ci: use shared org-level Maven Central and signing secrets (#970) #46
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: macOS Native Image | |
| # macOS native-image coverage is kept off the per-PR critical path: the macOS | |
| # build is the long pole and macOS runners bill at 10x. Instead we build and | |
| # smoke-test the macOS native image on every push to main (per-merge signal) | |
| # plus a weekly backstop, so macOS-specific native regressions are still caught | |
| # promptly before the Sunday release. PRs build only the Linux native image | |
| # (see pr.yml). | |
| on: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| # Saturday 04:23 UTC — backstop ahead of the Sunday release build. | |
| - cron: "23 4 * * 6" | |
| workflow_dispatch: | |
| # No concurrency group: each push to main builds to completion so every merge | |
| # gets its own macOS native-image signal. A shared cancel-in-progress group | |
| # would cancel the in-flight build (the long pole, ~20-25 min) whenever a newer | |
| # merge landed, and those cancelled runs surface as red checks on main. | |
| jobs: | |
| isthmus-native-image-macos: | |
| name: Build Isthmus Native Image (macOS) | |
| if: github.repository == 'substrait-io/substrait-java' | |
| runs-on: macOS-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| java-version: 25 | |
| distribution: graalvm | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Report Java Version | |
| run: java -version | |
| - name: Build with Gradle | |
| run: | | |
| # Full optimization (no --quick-build-native) so this mirrors the | |
| # release build and catches anything that would break shipping. | |
| ./gradlew nativeCompile | |
| - name: Smoke Test | |
| run: | | |
| ./isthmus-cli/src/test/script/smoke.sh | |
| ./isthmus-cli/src/test/script/tpch_smoke.sh |