mirror of
https://github.com/ethauvin/bld.git
synced 2025-04-25 00:07:12 -07:00
Try running on Windows in CI
This commit is contained in:
parent
4e64675bdb
commit
844b2b390d
1 changed files with 29 additions and 0 deletions
29
.github/workflows/bld.yml
vendored
29
.github/workflows/bld.yml
vendored
|
@ -136,3 +136,32 @@ jobs:
|
|||
- name: Run tests
|
||||
run: >-
|
||||
./bld clean download compile test
|
||||
|
||||
build-windows:
|
||||
runs-on: windows-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
java-version: [ 17, 20 ]
|
||||
|
||||
steps:
|
||||
- name: Configure git line endings
|
||||
run: git config --global core.autocrlf input
|
||||
|
||||
- name: Checkout source repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
clean: true
|
||||
submodules: 'true'
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set up JDK ${{ matrix.java-version }}
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
distribution: 'corretto'
|
||||
java-version: ${{ matrix.java-version }}
|
||||
check-latest: true
|
||||
|
||||
- name: Run tests
|
||||
run: >-
|
||||
.\bld.bat clean download compile test
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue