From 73739027da5e48eb970ac136133dec2c7a1f1179 Mon Sep 17 00:00:00 2001 From: Alexandre Chapellon Date: Thu, 18 Jul 2024 16:18:17 +0200 Subject: [PATCH] save & restore artifacts --- .github/workflows/build_and_test.yml | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index d700cbec..872a6bab 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -26,10 +26,15 @@ jobs: path: repository classifier: .zip group: org.alfresco - + outputs: + artifact: ${{ github.run_number }} steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # 4.1.7 + - name: Hash matrix to use as a cache key + id: hash-matrix + run: echo "| shasum -a 256 | cut -c1-64)" + - name: Setup .netrc run: | echo "machine nexus.alfresco.com" >> ~/.netrc @@ -37,15 +42,33 @@ jobs: echo "password ${{ secrets.NEXUS_PASSWORD }}" >> ~/.netrc - name: Fetch artifacts from nexus - run: ${{ github.workspace }}/scripts/fetch-artifact.sh ${{ matrix.images.artifact }} ${{ matrix.images.version }} ${{ matrix.images.classifier }} ${{ matrix.images.group }} ${{ matrix.images.path }} + run: >- + ${{ github.workspace }}/scripts/fetch-artifact.sh + ${{ matrix.images.artifact }} + ${{ matrix.images.version }} + ${{ matrix.images.classifier }} + ${{ matrix.images.group }} + ${{ matrix.images.path }} working-directory: ${{ github.workspace }} + + - name: Upload Artifacts for next job + uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # 4.3.4 + with: + name: ${{ github.run_number }} + path: ${{ matrix.images.path }}/${{ matrix.images.name }}-${{ matrix.images.version }}${{ matrix.images.classifier }} + build-run-test: runs-on: ubuntu-latest needs: prepare_artifacts steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # 4.1.7 + - name: Download artifacts + uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # 4.1.8 + with: + name: ${{ github.run_number }} + - name: Set up QEMU uses: docker/setup-qemu-action@5927c834f5b4fdf503fca6f4c7eccda82949e1ee # 3.1.0