Skip to content

Commit

Permalink
[CI] Add Windows to the Java build + fix schema validation warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Aug 5, 2021
1 parent 145b0d4 commit 17c03c3
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ env:

jobs:
java-build:
name: Java ${{ matrix.java }}
runs-on: ubuntu-20.04
name: Java ${{ matrix.java }} (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java: [ '8', '11', '16', '17-ea' ]
os: [ 'ubuntu-20.04', 'windows-latest' ]
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -170,9 +171,11 @@ jobs:

cpp-clang-macos-build:
name: C++ Xcode ${{ matrix.version }} (macOS)
runs-on: macos-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ 'macos-latest' ]
env:
CC: clang
CXX: clang++
Expand All @@ -189,9 +192,11 @@ jobs:

cpp-msvc-build:
name: C++ MSVC (Windows)
runs-on: windows-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ 'windows-latest' ]
env:
CC: cl
CXX: cl
Expand Down

0 comments on commit 17c03c3

Please sign in to comment.