Skip to content

save & restore artifacts #78

save & restore artifacts

save & restore artifacts #78

Workflow file for this run

name: Build, Run and Test Docker Image
on: [push]
jobs:
prepare_artifacts:
runs-on: ubuntu-latest
strategy:
matrix:
images:
- artifact: alfresco-elasticsearch-live-indexing-metadata
version: 4.0.1
name: alfresco-enterprise-search-metadata
path: search/enterprise/common
classifier: -app.jar
group: org.alfresco
- artifact: alfresco-elasticsearch-live-indexing-path
version: 4.0.1
name: alfresco-enterprise-search-path
path: search/enterprise/common
classifier: -app.jar
group: org.alfresco
- artifact: alfresco-content-services-distribution
version: 23.2.2
name: alfresco-content-services-distribution
path: repository
classifier: .zip
group: org.alfresco
outputs:
artifact: ${{ steps.hash_matrix.outputs.artifacts_key }}
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # 4.1.7
- name: Hash matrix to use as a cache key
id: hash_matrix
run: |
echo "artifacts_key=$(echo ${{ matrix.images }} | jq -c | sha256sum)" >> $GITHUB_OUTPUT
- name: Setup .netrc
run: |
echo "machine nexus.alfresco.com" >> ~/.netrc
echo "login ${{ secrets.NEXUS_USERNAME }}" >> ~/.netrc
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 }}
working-directory: ${{ github.workspace }}
- name: Upload Artifacts for next job
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # 4.3.4
with:
name: ${{ steps.hash_matrix.outputs.artifacts_key }}
path: /tmp/${{ matrix.images.name }}.tar
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: ${{ needs.prepare_artifacts.outputs.artifact }}
- name: Set up QEMU
uses: docker/setup-qemu-action@5927c834f5b4fdf503fca6f4c7eccda82949e1ee # 3.1.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@2ad185228a349d19414702819e06df9fa4314287 # 3.4.0
- name: Login to Docker Hub
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # 3.2.0
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
- name: Bake Docker images
uses: docker/bake-action@eac74531aa56a9266bfedfe5edb6b851ce2cca2b # v5.4.0
- name: Verify docker-compose
uses: Alfresco/alfresco-build-tools/.github/actions/dbp-charts/verify-compose@v5.34.0
timeout-minutes: 10
with:
compose_pull: false
compose_file_path: docker-compose/docker-compose.yml
quay_username: ${{ secrets.QUAY_USERNAME }}
quay_password: ${{ secrets.QUAY_PASSWORD }}
- uses: Alfresco/alfresco-build-tools/.github/actions/docker-dump-containers-logs@v5.34.0