Skip to content

Commit

Permalink
Fixes #377 - Add creating of Linux to build workflow (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnriem authored Oct 19, 2024
1 parent 65e5a14 commit d2454f8
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,21 @@ jobs:
maven-version: 3.9.6
- name: Build with Maven
run: mvn -B -DskipTests -DskipITs --ntp -P macos package
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Java 21
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: 21
- name: Set up Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.9.6
- name: Build with Maven
run: mvn -B -DskipTests -DskipITs --ntp -P graalvm package
windows:
runs-on: windows-latest
steps:
Expand Down

0 comments on commit d2454f8

Please sign in to comment.