From 18582a05525dfabe9c8eb6d269c3bdc52be38e6f Mon Sep 17 00:00:00 2001 From: Stefano Bonicatti Date: Mon, 1 Jul 2024 12:34:32 +0200 Subject: [PATCH] test --- .github/workflows/hosted_runners.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/hosted_runners.yml b/.github/workflows/hosted_runners.yml index 7184b843e49..65f654f1724 100644 --- a/.github/workflows/hosted_runners.yml +++ b/.github/workflows/hosted_runners.yml @@ -795,16 +795,18 @@ jobs: - name: Package the tests for the x86_64 macOS-12 worker if: matrix.architecture == 'x86_64' - working-directory: ${{ steps.build_paths.outputs.BINARY }} + working-directory: ${{ github.workspace }}/workspace run: | - ( cd workspace && ${{ steps.build_paths.outputs.SOURCE }}/tools/ci/scripts/macos/package_tests.sh build macos_tests_${{ matrix.build_type }} ) + pwd + mkdir macos_tests_${{ matrix.build_type }} + ${{ steps.build_paths.outputs.SOURCE }}/tools/ci/scripts/macos/package_tests.sh build macos_tests_${{ matrix.build_type }} - name: Store the packaged tests for the x86_64 macOS-12 worker if: matrix.architecture == 'x86_64' uses: actions/upload-artifact@v1 with: name: macos_tests_${{ matrix.build_type }} - path: ${{ steps.build_paths.outputs.BINARY }}/macos_tests_${{ matrix.build_type }}.tar.gz + path: workspace/macos_tests_${{ matrix.build_type }}.tar.gz # Before we terminate this job, delete the build folder. The cache # actions will require the disk space to create the archives.