Skip to content

Commit

Permalink
Add build for EA stable
Browse files Browse the repository at this point in the history
  • Loading branch information
rbygrave committed Jun 14, 2024
1 parent ad3bcc0 commit 21cf262
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/jdk-ea-stable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@

name: avaje-inject EA stable

on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: '39 1 * * 1,3,5'

jobs:
build:

runs-on: ${{ matrix.os }}
permissions:
contents: read
packages: write
# strategy:
# fail-fast: false
# matrix:
# java_version: [GA,EA] ## valhalla (fails javadoc)
# os: [ubuntu-latest]

steps:
- uses: actions/checkout@v3
- name: Set up Java
uses: oracle-actions/setup-java@v1
with:
website: jdk.java.net
release: ea
version: stable
- name: Maven cache
uses: actions/cache@v3
env:
cache-name: maven-cache
with:
path:
~/.m2
key: build-${{ env.cache-name }}
- name: Maven version
run: mvn --version
- name: Build with Maven
run: mvn package

0 comments on commit 21cf262

Please sign in to comment.