Docker CI #179
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: Docker CI | |
| on: | |
| push: | |
| branches: [master] | |
| tags: ["*"] | |
| pull_request: | |
| schedule: | |
| - cron: 0 0 * * 0 | |
| jobs: | |
| lint: | |
| uses: ./.github/workflows/lint-editorconfig.yml | |
| build: | |
| name: build (${{ matrix.version.value }}) | |
| needs: lint | |
| uses: ./.github/workflows/docker-build.yml | |
| with: | |
| docker-repo-name: owncloud/${{ github.event.repository.name }} | |
| docker-tag: ${{ matrix.version.value }} | |
| docker-context: v${{ matrix.version.value }} | |
| docker-file: v${{ matrix.version.value }}/Dockerfile.multiarch | |
| docker-hub-username: ${{ vars.DOCKERHUB_USERNAME }} | |
| smoke-test-cmd: ${{ matrix.version.smoke-test-cmd }} | |
| push: ${{ github.ref == 'refs/heads/master' }} | |
| build-date-tag: true | |
| secrets: | |
| docker-hub-password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| strategy: | |
| matrix: | |
| version: | |
| - value: "24.04" | |
| smoke-test-cmd: ". /etc/os-release && [ \"${VERSION_ID}\" = \"24.04\" ]" | |
| - value: "22.04" | |
| smoke-test-cmd: ". /etc/os-release && [ \"${VERSION_ID}\" = \"22.04\" ]" | |
| # Self-test the opt-in native multi-arch reusable workflow end-to-end. | |
| # Builds the v24.04 base image on native amd64 + arm64 runners and smoke-tests | |
| # each arch. push is always false: this only asserts the native workflow works, | |
| # it never publishes (the `build` job above owns publishing via docker-build.yml). | |
| build-native: | |
| name: build-native (24.04) | |
| needs: lint | |
| uses: ./.github/workflows/docker-build-native.yml | |
| with: | |
| docker-repo-name: owncloud/${{ github.event.repository.name }} | |
| docker-tag: "24.04" | |
| docker-context: v24.04 | |
| docker-file: v24.04/Dockerfile.multiarch | |
| docker-hub-username: ${{ vars.DOCKERHUB_USERNAME }} | |
| smoke-test-cmd: ". /etc/os-release && [ \"${VERSION_ID}\" = \"24.04\" ]" | |
| push: false | |
| secrets: | |
| docker-hub-password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| update-docker-hub-description: | |
| needs: build | |
| if: github.ref == 'refs/heads/master' | |
| uses: ./.github/workflows/docker-hub-desc.yml | |
| with: | |
| docker-repo-name: owncloud/${{ github.event.repository.name }} | |
| docker-repo-description: ownCloud Ubuntu base image | |
| docker-hub-username: ${{ vars.DOCKERHUB_USERNAME }} | |
| secrets: | |
| docker-hub-password: ${{ secrets.DOCKERHUB_TOKEN }} |