Build Images #6051
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: Build Images | |
| on: | |
| push: | |
| branches: | |
| - master | |
| schedule: | |
| - cron: "0 5 * * *" | |
| jobs: | |
| build-linux: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: ubuntu-26 | |
| tags: "ubuntu-resolute ubuntu latest" | |
| - name: ubuntu-24 | |
| tags: "ubuntu-noble" | |
| - name: ubuntu-22 | |
| tags: "ubuntu-jammy" | |
| - name: ubuntu-20 | |
| tags: "ubuntu-focal" | |
| - name: debian-13 | |
| tags: "debian-trixie debian" | |
| - name: debian-12 | |
| tags: "debian-bookworm" | |
| - name: debian-11 | |
| tags: "debian-bullseye" | |
| - name: alpine-3 | |
| tags: "alpine" | |
| - name: rocky-9 | |
| tags: "rocky" | |
| - name: rocky-8 | |
| - name: centos-9 | |
| tags: "centos" | |
| - name: cachyos | |
| - name: cachyos-3 | |
| uses: ./.github/workflows/_build-linux.yml | |
| secrets: inherit | |
| with: | |
| name: ${{ matrix.name }} | |
| tags: ${{ matrix.tags }} | |
| heartbeat: | |
| runs-on: ubuntu-latest | |
| needs: [build-linux] | |
| steps: | |
| - name: Send heartbeat ping to update UptimeRobot monitoring | |
| run: curl --silent --request POST $UPTIMEROBOT_WEBHOOK | |
| env: | |
| UPTIMEROBOT_WEBHOOK: ${{ secrets.UPTIMEROBOT_WEBHOOK }} |