update tweet content #613
This file contains 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 | |
on: | |
push: | |
branches: | |
- main | |
- 3.3.x | |
- 3.2.x | |
- 3.1.x | |
- 2.7.x | |
pull_request: | |
branches: | |
- main | |
- 3.3.x | |
- 3.2.x | |
- 3.1.x | |
- 2.7.x | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
cache: 'gradle' | |
- name: Build with Gradle | |
run: ./gradlew build --no-daemon --stacktrace --info | |
# After 3.4.0, this job will fail, grpc and netty are really not GraalVM-ready. | |
native-image-build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Setup GraalVM | |
uses: graalvm/setup-graalvm@v1 | |
with: | |
java-version: '17' | |
distribution: 'graalvm' | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
native-image-job-reports: 'true' | |
- name: Build native image | |
run: | | |
./gradlew nativeRun --no-daemon --stacktrace |