From d77f09087d891d27ac53ca513d87656f30726cf8 Mon Sep 17 00:00:00 2001 From: Florian Sesser Date: Thu, 23 Jan 2025 18:26:41 +0000 Subject: [PATCH] Work around CircleCI not supporting globbing for artifacts --- .circleci/config.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4cf6a7aa3..c17feca23 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: