Skip to content

Commit

Permalink
Merge pull request #89 from clEsperanto/update-build-CI
Browse files Browse the repository at this point in the history
build against oldest OS version
  • Loading branch information
StRigaud authored Jan 9, 2025
2 parents c3a6ade + 16b8ca1 commit f8fb9f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
- macos
include:
- name: ubuntu
os: ubuntu-latest
os: ubuntu-20.04
c-compiler: gcc
cxx-compiler: g++
cmake-build-type: Release
cmake-build-flag: ""
- name: windows
os: windows-latest
os: windows-2019
c-compiler: cl.exe
cxx-compiler: cl.exe
cmake-build-type: Release
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,16 @@ jobs:
strategy:
matrix:
java: [8, 11, 17, 21]

name: Test with Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2

- name: Setup java
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'

- name: Execute the tests
run: mvn clean test -X

0 comments on commit f8fb9f5

Please sign in to comment.