Nightly #41
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 23:00 CT (04:00 UTC, approximate — shifts 1 h in CST winter). | |
| # Can also be triggered manually. | |
| # | |
| # Published tags: | |
| # floci/floci-az:nightly floci/floci-az:nightly-mmddyyyy | |
| # | |
| # 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@v7 | |
| with: | |
| ref: main | |
| - uses: graalvm/setup-graalvm@6f3fa030c4b8f77c1f554a860f593a654538fa38 # v1 | |
| with: | |
| java-version: '25' | |
| distribution: 'mandrel' | |
| cache: maven | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set nightly version | |
| run: ./mvnw versions:set -DnewVersion="nightly-${{ needs.prepare.outputs.version }}" -DgenerateBackupPoms=false -q | |
| - name: Build native executable | |
| run: ./mvnw 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@v7 | |
| with: | |
| ref: main | |
| - uses: graalvm/setup-graalvm@6f3fa030c4b8f77c1f554a860f593a654538fa38 # v1 | |
| with: | |
| java-version: '25' | |
| distribution: 'mandrel' | |
| cache: maven | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set nightly version | |
| run: ./mvnw versions:set -DnewVersion="nightly-${{ needs.prepare.outputs.version }}" -DgenerateBackupPoms=false -q | |
| - name: Build native executable | |
| run: ./mvnw 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 Docker image (multi-arch manifest) ──────────────────────── | |
| push-native: | |
| name: Push native Docker image | |
| needs: [prepare, build-native-amd64, build-native-arm64] | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@v7 | |
| 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@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.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-az:nightly | |
| floci/floci-az:nightly-${{ needs.prepare.outputs.version }} | |
| 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 |