Skip to content

Commit

Permalink
Don't compile to native in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jvican committed Nov 28, 2020
1 parent de99a33 commit 822cd5e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:
curl -Lo coursier https://git.io/coursier-cli && chmod +x coursier && ./coursier --help
yarn --help
java -version
gu install native-image
shell: bash
- name: Check formatting
if: matrix.os != 'windows-latest'
Expand All @@ -39,5 +38,11 @@ jobs:
shell: bash
- name: Compile and test jsonrpc4s
run: |
sbt "+test" "snailgun-cli/graalvm-native-image:packageBin"
shell: bash
sbt "+test"
shell: bash
- name: Compile to native
if: matrix.os != 'windows-latest'
run: |
gu install native-image
sbt "snailgun-cli/graalvm-native-image:packageBin"
shell: bash

0 comments on commit 822cd5e

Please sign in to comment.