-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate most tests to GH Actions for CI
- Loading branch information
Olafur Pall Geirsson
committed
Mar 19, 2020
1 parent
4d19177
commit b2cff42
Showing
4 changed files
with
49 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
jobs: | ||
test: | ||
name: ${{ matrix.command }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
command: | ||
- "ci-211" | ||
- "ci-212" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: olafurpg/setup-scala@v7 | ||
- run: sbt ${{ matrix.command }} | ||
jdk11: | ||
name: JDK11 tests | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: olafurpg/setup-scala@v7 | ||
with: | ||
java-version: adopt@1.11 | ||
- run: sbt ci-212 | ||
windows: | ||
name: Windows tests | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: olafurpg/setup-scala@v7 | ||
- run: ./sbt ci-212-windows | ||
shell: bash | ||
checks: | ||
name: Scalafmt | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: olafurpg/setup-scala@v7 | ||
- run: ./scalafmt --test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
-Dfile.encoding=UTF8 | ||
-Xss8m | ||
-Xss4m | ||
-Xms1G | ||
-Xmx4G | ||
-XX:ReservedCodeCacheSize=250M | ||
-Xmx2G | ||
-XX:ReservedCodeCacheSize=1024m | ||
-XX:+TieredCompilation | ||
-XX:-UseGCOverheadLimit | ||
-XX:+CMSClassUnloadingEnabled | ||
-Dfile.encoding=UTF-8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.