From b8930003bf288a77aea7eaef02d534635ed09fd7 Mon Sep 17 00:00:00 2001 From: aldbr Date: Wed, 18 Dec 2024 13:55:19 +0100 Subject: [PATCH] fix --- .github/workflows/gubbins-test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gubbins-test.yml b/.github/workflows/gubbins-test.yml index 61bbd94..9b8e6d7 100644 --- a/.github/workflows/gubbins-test.yml +++ b/.github/workflows/gubbins-test.yml @@ -113,19 +113,16 @@ jobs: echo "Building $pkg_dir" python -m build --outdir $PWD/dist $pkg_dir done - ls -l $PWD/dist - name: "Find wheels" id: find_wheel run: | cd ../diracx/dist - ls -l # We need to copy them there to be able to access them in the RUN --mount cp diracx*.whl gubbins*.whl ../extensions/containers/services/ for wheel_fn in *.whl; do pkg_name=$(basename "${wheel_fn}" | cut -d '-' -f 1) echo "${pkg_name}-wheel-name=$(ls "${pkg_name}"-*.whl)" >> $GITHUB_OUTPUT done - ls -l ../extensions/containers/services/ # - Build the gubbins image using the wheels - name: Set up QEMU @@ -261,6 +258,9 @@ jobs: name: gubbins path: /tmp/gubbins + - name: List gubbins + run: ls -la /tmp/gubbins + - name: Clone diracx source run: | cd ..