Quarkus Release Test Build #1236
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: Quarkus Release Test Build | |
on: | |
schedule: | |
- cron: '0 3 * * *' | |
env: | |
LANG: en_US.UTF-8 | |
jobs: | |
build: | |
name: "Prepare release" | |
runs-on: ubuntu-latest | |
if: github.repository == 'quarkusio/quarkus' | |
env: | |
MAVEN_OPTS: -Xmx2560m | |
JBANG_REPO: $HOME/release/repository | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Reclaim Disk Space | |
run: .github/ci-prerequisites.sh | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Create maven repo | |
run: mkdir -p $HOME/release/repository | |
- name: Build and Test | |
run: | | |
./mvnw --settings .github/mvn-settings.xml \ | |
-B \ | |
-Prelease \ | |
-DskipTests -DskipITs \ | |
-Ddokka \ | |
-Dmaven.repo.local=$HOME/release/repository \ | |
-Dgpg.skip \ | |
clean install | |
- name: Report | |
if: always() | |
shell: bash | |
run: | | |
curl -Ls https://sh.jbang.dev | bash -s - app setup | |
~/.jbang/bin/jbang .github/NativeBuildReport.java \ | |
issueNumber=13058 \ | |
runId=${{ github.run_id }} \ | |
status=${{ job.status }} \ | |
token=${{ secrets.GITHUB_API_TOKEN }} \ | |
issueRepo=${{ github.repository }} \ | |
thisRepo=${{ github.repository }} |