-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
461826c
commit 2892c62
Showing
2 changed files
with
37 additions
and
2 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 |
---|---|---|
|
@@ -22,14 +22,31 @@ jobs: | |
name: Build and Test | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-12, macos-latest] | ||
os: | ||
- ubuntu-latest | ||
- macos-12 | ||
- macos-latest | ||
- windows-latest | ||
scala: [2.12.20, 2.13.14, 3.3.3] | ||
java: [temurin@8, temurin@11, temurin@17, temurin@21] | ||
exclude: | ||
- java: temurin@8 | ||
os: macos-latest | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Ignore line ending differences in git | ||
if: contains(runner.os, 'windows') | ||
shell: bash | ||
run: git config --global core.autocrlf false | ||
|
||
- name: Configure pagefile for Windows | ||
if: contains(runner.os, 'windows') | ||
uses: al-cheb/[email protected] | ||
with: | ||
minimum-size: 2GB | ||
maximum-size: 8GB | ||
disk-root: 'C:' | ||
|
||
- name: Checkout current branch (full) | ||
uses: actions/checkout@v4 | ||
with: | ||
|
@@ -72,24 +89,30 @@ jobs: | |
|
||
- name: Install sbt | ||
if: matrix.os == 'macos-latest' | ||
shell: bash | ||
run: brew install sbt | ||
|
||
- name: Check that workflows are up to date | ||
shell: bash | ||
run: sbt '++ ${{ matrix.scala }}' githubWorkflowCheck | ||
|
||
- name: Report version policy issues | ||
shell: bash | ||
run: sbt '++ ${{ matrix.scala }}' versionPolicyCheck | ||
|
||
- name: Build project | ||
shell: bash | ||
run: sbt '++ ${{ matrix.scala }}' clean coverage test | ||
|
||
- name: Upload coverage data to Coveralls | ||
env: | ||
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COVERALLS_FLAG_NAME: Scala ${{ matrix.scala }} | ||
shell: bash | ||
run: sbt '++ ${{ matrix.scala }}' coverageReport coverageAggregate coveralls | ||
|
||
- name: Compress target directories | ||
shell: bash | ||
run: tar cf targets.tar target support/stream-circe/target http-json/target tests/target stream-json/target support/http-circe/target project/target | ||
|
||
- name: Upload target directories | ||
|
@@ -109,6 +132,18 @@ jobs: | |
java: [temurin@8] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- name: Ignore line ending differences in git | ||
if: contains(runner.os, 'windows') | ||
run: git config --global core.autocrlf false | ||
|
||
- name: Configure pagefile for Windows | ||
if: contains(runner.os, 'windows') | ||
uses: al-cheb/[email protected] | ||
with: | ||
minimum-size: 2GB | ||
maximum-size: 8GB | ||
disk-root: 'C:' | ||
|
||
- name: Checkout current branch (full) | ||
uses: actions/checkout@v4 | ||
with: | ||
|
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