From 0832bf69ade72b1ad2541cd2cb6c2f57c8fdbc20 Mon Sep 17 00:00:00 2001 From: d61h6k4 Date: Mon, 19 Jun 2023 18:10:18 +0200 Subject: [PATCH] Bump qemu version to be consistent with buildx --- .github/workflows/continous-integration.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/continous-integration.yml b/.github/workflows/continous-integration.yml index ca32b11101cd..befe0345e95a 100644 --- a/.github/workflows/continous-integration.yml +++ b/.github/workflows/continous-integration.yml @@ -839,7 +839,7 @@ jobs: if: github.event_name != 'pull_request' - name: Set up QEMU - uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 + uses: docker/setup-qemu-action@v2 - name: Read Poetry Version 🔢 run: | @@ -1007,7 +1007,7 @@ jobs: strategy: matrix: - image: [default] # , full, mitie-en, spacy-de, spacy-it, spacy-en] + image: [default, full, mitie-en, spacy-de, spacy-it, spacy-en] steps: # Due to an issue with checking out a wrong commit, we make sure @@ -1024,7 +1024,7 @@ jobs: if: github.event_name != 'pull_request' - name: Set up QEMU - uses: docker/setup-qemu-action@e81a89b1732b9c48d79cd809d8d81d79c4647a18 + uses: docker/setup-qemu-action@v2 - name: Free disk space if: needs.changes.outputs.docker == 'true' @@ -1049,7 +1049,7 @@ jobs: run: echo ${{ steps.buildx.outputs.platforms }} - name: Login to DockerHub Registry 🔢 -# if: needs.changes.outputs.docker == 'true' + if: needs.changes.outputs.docker == 'true' run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ env.DOCKERHUB_USERNAME }} --password-stdin || true - name: Copy Segment write key to the package @@ -1061,12 +1061,12 @@ jobs: ./scripts/write_keys_file.sh - name: Build Docker image -# if: needs.changes.outputs.docker == 'true' + if: needs.changes.outputs.docker == 'true' run: | docker buildx bake --set *.platform=linux/amd64,linux/arm64 -f docker/docker-bake.hcl ${{ matrix.image }} - name: Push image with main tag 📦 -# if: needs.changes.outputs.docker == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'RasaHQ/rasa' + if: needs.changes.outputs.docker == 'true' && github.event_name == 'push' && github.ref == 'refs/heads/main' && github.repository == 'RasaHQ/rasa' run: | docker buildx bake --set *.platform=linux/amd64,linux/arm64 -f docker/docker-bake.hcl ${{ matrix.image }} --push