Nightly #43
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: Nightly | |
| # Builds and publishes native images from the tip of main as nightly Docker tags. | |
| # Runs every night at 22:00 CT (03:00 UTC, approximate — shifts 1 h in CST winter). | |
| # Can also be triggered manually. | |
| # | |
| # Published tags: | |
| # Native: floci/floci-gcp:nightly floci/floci-gcp:nightly-mmddyyyy | |
| # Compat: floci/floci-gcp:nightly-compat floci/floci-gcp:nightly-mmddyyyy-compat | |
| # | |
| # Required secrets: DOCKERHUB_USERNAME, DOCKERHUB_TOKEN | |
| on: | |
| schedule: | |
| - cron: '0 4 * * *' # 23:00 CT (CDT/UTC-5); shifts to 23:00 CST in winter | |
| workflow_dispatch: # Allow maintainers to trigger manually | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # ── Compute nightly version (CT date) ──────────────────────────────────── | |
| prepare: | |
| name: Prepare nightly version | |
| runs-on: ubuntu-latest | |
| outputs: | |
| version: ${{ steps.date.outputs.version }} | |
| steps: | |
| - name: Set date version (CT) | |
| id: date | |
| run: echo "version=$(TZ='America/Chicago' date +'%m%d%Y')" >> "$GITHUB_OUTPUT" | |
| # ── Build native artifact — amd64 ──────────────────────────────────────── | |
| build-native-amd64: | |
| name: Build native artifact (amd64) | |
| needs: prepare | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 45 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: main | |
| - uses: graalvm/setup-graalvm@bef4b0e916c7dd079bf60fb95d49139f67e32c5f # v1 | |
| with: | |
| java-version: '25' | |
| distribution: 'mandrel' | |
| cache: maven | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set nightly version | |
| run: mvn versions:set -DnewVersion="nightly-${{ needs.prepare.outputs.version }}" -DgenerateBackupPoms=false -q | |
| - name: Build native executable | |
| run: mvn clean package -Dnative -DskipTests -B -Dquarkus.native.additional-build-args-append="-march=x86-64-v2" | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: native-amd64 | |
| path: | | |
| target/*-runner | |
| target/*.properties | |
| target/*.so | |
| if-no-files-found: warn | |
| retention-days: 1 | |
| # ── Build native artifact — arm64 ──────────────────────────────────────── | |
| build-native-arm64: | |
| name: Build native artifact (arm64) | |
| needs: prepare | |
| runs-on: ubuntu-24.04-arm | |
| timeout-minutes: 45 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: main | |
| - uses: graalvm/setup-graalvm@bef4b0e916c7dd079bf60fb95d49139f67e32c5f # v1 | |
| with: | |
| java-version: '25' | |
| distribution: 'mandrel' | |
| cache: maven | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set nightly version | |
| run: mvn versions:set -DnewVersion="nightly-${{ needs.prepare.outputs.version }}" -DgenerateBackupPoms=false -q | |
| - name: Build native executable | |
| run: mvn clean package -Dnative -DskipTests -B | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: native-arm64 | |
| path: | | |
| target/*-runner | |
| target/*.properties | |
| target/*.so | |
| if-no-files-found: warn | |
| retention-days: 1 | |
| # ── Push native + compat Docker images ─────────────────────────────────── | |
| push-native: | |
| name: Push native and compat Docker images | |
| needs: [prepare, build-native-amd64, build-native-arm64] | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: main | |
| - uses: actions/download-artifact@v8 | |
| with: | |
| name: native-amd64 | |
| path: native/amd64/ | |
| - uses: actions/download-artifact@v8 | |
| with: | |
| name: native-arm64 | |
| path: native/arm64/ | |
| - name: Make binaries executable | |
| run: chmod +x native/amd64/*-runner native/arm64/*-runner | |
| - name: Set created timestamp | |
| id: created | |
| run: echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> "$GITHUB_OUTPUT" | |
| - name: Set SOURCE_DATE_EPOCH | |
| id: source_date | |
| run: echo "epoch=$(git log -1 --pretty=%ct)" >> "$GITHUB_OUTPUT" | |
| - uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0 | |
| - uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0 | |
| with: | |
| username: ${{ secrets.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Build and push native nightly image | |
| uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0 | |
| env: | |
| SOURCE_DATE_EPOCH: ${{ steps.source_date.outputs.epoch }} | |
| with: | |
| context: . | |
| file: docker/Dockerfile.native-package | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| tags: | | |
| floci/floci-gcp:nightly | |
| floci/floci-gcp:nightly-${{ needs.prepare.outputs.version }} | |
| labels: | | |
| org.opencontainers.image.version=nightly-${{ needs.prepare.outputs.version }} | |
| org.opencontainers.image.revision=${{ github.sha }} | |
| org.opencontainers.image.created=${{ steps.created.outputs.created }} | |
| version=nightly-${{ needs.prepare.outputs.version }} | |
| build-date=${{ steps.created.outputs.created }} | |
| vcs-ref=${{ github.sha }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| - name: Build and push compat nightly image | |
| uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0 | |
| env: | |
| SOURCE_DATE_EPOCH: ${{ steps.source_date.outputs.epoch }} | |
| with: | |
| context: . | |
| file: docker/Dockerfile.compat | |
| platforms: linux/amd64,linux/arm64 | |
| push: true | |
| tags: | | |
| floci/floci-gcp:nightly-compat | |
| floci/floci-gcp:nightly-${{ needs.prepare.outputs.version }}-compat | |
| build-args: | | |
| VERSION=nightly-${{ needs.prepare.outputs.version }} | |
| labels: | | |
| org.opencontainers.image.version=nightly-${{ needs.prepare.outputs.version }} | |
| org.opencontainers.image.revision=${{ github.sha }} | |
| org.opencontainers.image.created=${{ steps.created.outputs.created }} | |
| version=nightly-${{ needs.prepare.outputs.version }} | |
| build-date=${{ steps.created.outputs.created }} | |
| vcs-ref=${{ github.sha }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max |