Continuous Integration #1098
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Continuous Integration | |
| on: | |
| push: | |
| schedule: | |
| - cron: "0 17 * * *" # 3 AM AEST | |
| jobs: | |
| image: | |
| runs-on: | |
| - ${{ matrix.arch }} | |
| - linux | |
| - self-hosted | |
| steps: | |
| - uses: actions/checkout@v2.3.4 | |
| - uses: docker/login-action@v1.9.0 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - uses: docker/build-push-action@v2.4.0 | |
| with: | |
| context: . # See: https://github.com/docker/build-push-action/issues/182#issuecomment-814589666 | |
| file: ${{ matrix.os }}/Dockerfile | |
| no-cache: ${{ github.event_name == 'schedule' }} | |
| push: true | |
| tags: ${{ secrets.DOCKER_ORG }}/${{ secrets.DOCKER_REPO }}:sha-${{ github.sha }}-${{ matrix.os }}-${{ matrix.arch }} | |
| strategy: | |
| matrix: | |
| arch: | |
| - arm64 | |
| - x64 | |
| os: | |
| - focal | |
| - jammy | |
| - resolute | |
| manifest: | |
| env: | |
| IMAGE_REPO: ${{ secrets.DOCKER_ORG }}/${{ secrets.DOCKER_REPO }} | |
| IMAGE_TAG: sha-${{ github.sha }}-${{ matrix.os }} | |
| needs: image | |
| runs-on: | |
| - linux | |
| - self-hosted | |
| steps: | |
| - uses: docker/login-action@v1.9.0 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Push branch manifest list | |
| run: | | |
| docker buildx imagetools create -t \ | |
| ${{ env.IMAGE_REPO }}:${GITHUB_REF#refs/heads/}-${{ matrix.os }} \ | |
| ${{ env.IMAGE_REPO }}:${{ env.IMAGE_TAG }}-arm64 \ | |
| ${{ env.IMAGE_REPO }}:${{ env.IMAGE_TAG }}-x64 | |
| - name: Push SHA manifest list | |
| run: | | |
| docker buildx imagetools create -t \ | |
| ${{ env.IMAGE_REPO }}:${{ env.IMAGE_TAG }} \ | |
| ${{ env.IMAGE_REPO }}:${{ env.IMAGE_TAG }}-arm64 \ | |
| ${{ env.IMAGE_REPO }}:${{ env.IMAGE_TAG }}-x64 | |
| - name: Push OS manifest list | |
| if: github.ref == 'refs/heads/main' | |
| run: | | |
| # Latest. | |
| docker buildx imagetools create -t \ | |
| ${{ env.IMAGE_REPO }}:${{ matrix.os }} \ | |
| ${{ env.IMAGE_REPO }}:${{ env.IMAGE_TAG }}-arm64 \ | |
| ${{ env.IMAGE_REPO }}:${{ env.IMAGE_TAG }}-x64 | |
| - name: Push 'latest' manifest list | |
| if: github.ref == 'refs/heads/main' && matrix.os == 'focal' | |
| run: | | |
| # Latest. | |
| docker buildx imagetools create -t \ | |
| ${{ env.IMAGE_REPO }}:latest \ | |
| ${{ env.IMAGE_REPO }}:${{ env.IMAGE_TAG }}-arm64 \ | |
| ${{ env.IMAGE_REPO }}:${{ env.IMAGE_TAG }}-x64 | |
| - name: Remove arch tags | |
| run: | | |
| TOKEN=$(curl -s -H "Content-Type: application/json" -X POST -d '{"username": "${{ secrets.DOCKER_USERNAME }}", "password": "${{ secrets.DOCKER_PASSWORD }}"}' "https://hub.docker.com/v2/users/login/" | jq -r '.token') | |
| curl "https://hub.docker.com/v2/repositories/${{ secrets.DOCKER_ORG }}/${{ secrets.DOCKER_REPO }}/tags/${{ env.IMAGE_TAG }}-arm64/" -X DELETE -H "Authorization: JWT ${TOKEN}" | |
| curl "https://hub.docker.com/v2/repositories/${{ secrets.DOCKER_ORG }}/${{ secrets.DOCKER_REPO }}/tags/${{ env.IMAGE_TAG }}-x64/" -X DELETE -H "Authorization: JWT ${TOKEN}" | |
| strategy: | |
| matrix: | |
| os: | |
| - focal | |
| - jammy | |
| - resolute | |
| readme: | |
| needs: manifest | |
| runs-on: | |
| - self-hosted | |
| steps: | |
| - uses: actions/checkout@v2.3.4 | |
| - uses: peter-evans/dockerhub-description@v2.4.2 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| repository: ${{ secrets.DOCKER_ORG }}/${{ secrets.DOCKER_REPO }} | |
| - name: Load HEALTHCHECK_URL | |
| if: vars.HEALTHCHECK_URL != '' && github.ref == 'refs/heads/main' | |
| run: | | |
| curl --fail --silent --show-error \ | |
| --retry 3 --retry-delay 2 --max-time 30 \ | |
| --url "${{ vars.HEALTHCHECK_URL }}" >/dev/null || { | |
| echo "Healthcheck request failed!" | |
| exit 1 | |
| } |