Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,11 @@ jobs:
- os: windows-latest
java: 8
distribution: zulu
jobtype: 2
jobtype: 3
runs-on: ${{ matrix.os }}
env:
JAVA_OPTS: -Dsbt.io.virtual=false -Dfile.encoding=UTF-8
JVM_OPTS: -Dsbt.io.virtual=false -Dfile.encoding=UTF-8
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -61,4 +64,16 @@ jobs:
shell: bash
run: |
sbt -v -Dfile.encoding=UTF8 -Dsbt.test.fork=true ++$SCALA212 mimaReportBinaryIssues test
sbt -v -Dfile.encoding=UTF8 -Dsbt.test.fork=false ++$SCALA213 test ++$SCALA3 test
sbt -v --client ++$SCALA213
sbt -v --client test
sbt -v --client ++$SCALA3
sbt -v --client test
- name: Build and test (3)
if: ${{ matrix.jobtype == 3 }}
shell: bash
run: |
sbt -v -Dfile.encoding=UTF8 -Dsbt.test.fork=true ++$SCALA212 test
sbt -v --client ++$SCALA213
sbt -v --client test
sbt -v --client ++$SCALA3
sbt -v --client test
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.7
sbt.version=1.10.11
Loading