From bd06b571448d1762ea11c2374f09f81c069da04d Mon Sep 17 00:00:00 2001 From: Rob Bygrave Date: Wed, 18 Sep 2024 20:49:40 +1200 Subject: [PATCH] Add valhalla EA build --- .github/workflows/valhalla.yml | 41 ++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/valhalla.yml diff --git a/.github/workflows/valhalla.yml b/.github/workflows/valhalla.yml new file mode 100644 index 0000000000..3b4dd7207d --- /dev/null +++ b/.github/workflows/valhalla.yml @@ -0,0 +1,41 @@ +name: Valhalla EA + +on: + workflow_dispatch: + schedule: + - cron: '39 2 * * 3' + +jobs: + build: + + runs-on: ${{ matrix.os }} + permissions: + contents: read + packages: write + strategy: + fail-fast: false + matrix: + java_version: [valhalla] + os: [ubuntu-latest] + + steps: + - uses: actions/checkout@v4 + - name: Set up Java + uses: oracle-actions/setup-java@v1 + with: + website: jdk.java.net + release: ${{ matrix.java_version }} + - name: Maven cache + uses: actions/cache@v4 + env: + cache-name: maven-cache + with: + path: + ~/.m2 + key: build-${{ env.cache-name }} + - name: Maven version + run: mvn --version +# - name: Prepare +# run: ./jakarta-to-valhalla.sh + - name: Build with Maven + run: mvn package