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 ..