Work around CircleCI not supporting globbing for artifacts

This commit is contained in:
Florian Sesser 2025-01-23 18:26:41 +00:00
parent f4082468f9
commit d77f09087d

View File

@ -597,12 +597,17 @@ jobs:
make -f debian/rules binary
- run:
name: "Install the built package"
command: dpkg -i /tmp/debian-13-package/tahoe-lafs_1.20.0-1_all.deb
command: |
# Work around CircleCI not supporting globbing in store_artifacts
mkdir -p /tmp/debian-13-package/dist
rm /tmp/debian-13-package/dist/tahoe-lafs_*.deb
mv /tmp/debian-13-package/tahoe-lafs_*.deb /tmp/debian-13-package/dist/
dpkg -i /tmp/debian-13-package/dist/tahoe-lafs_*.deb
- run:
name: "Run our newly system-wide installed tahoe"
command: tahoe --version
- store_artifacts:
path: /tmp/debian-13-package/tahoe-lafs_1.20.0-1_all.deb
path: /tmp/debian-13-package/dist
nixos:
parameters: