Tell actions/checkout@v4 to not force clean #3
Workflow file for this run
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
name: CI | |
on: | |
pull_request: | |
push: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
java: 8 | |
jobtype: 1 | |
- os: ubuntu-latest | |
java: 11 | |
jobtype: 1 | |
- os: ubuntu-latest | |
java: 21 | |
jobtype: 1 | |
- os: windows-latest | |
java: 8 | |
jobtype: 2 | |
- os: ubuntu-latest | |
java: 21 | |
jobtype: 3 | |
- os: ubuntu-latest | |
java: 21 | |
jobtype: 4 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
cache: sbt | |
- name: Build and test (1) | |
if: ${{ matrix.jobtype == 1 }} | |
shell: bash | |
run: bin/run-ci.sh | |
- name: Build and test (2) | |
if: ${{ matrix.jobtype == 2 }} | |
shell: bash | |
run: | | |
sbt -v -Dfile.encoding=UTF-8 -Dsbt.supershell=never "crossTestBridges" "zincRoot/test" "zincScripted/Test/run" | |
- name: Build and test (3) | |
if: ${{ matrix.jobtype == 3 }} | |
shell: bash | |
run: | | |
sbt -v -Dfile.encoding=UTF-8 "runBenchmarks" | |
- name: Checkout Develop Branch (3) | |
if: ${{ github.event_name == 'pull_request' && matrix.jobtype == 3 }} | |
uses: actions/checkout@v4 | |
with: | |
clean: false | |
ref: develop | |
- name: Build and test against Develop Branch (3) | |
if: ${{ github.event_name == 'pull_request' && matrix.jobtype == 3 }} | |
shell: bash | |
run: | | |
sbt -v -Dfile.encoding=UTF-8 "runBenchmarks" | |
- name: Build and test (4) | |
if: ${{ matrix.jobtype == 4 }} | |
shell: bash | |
run: | | |
sbt -v -Dfile.encoding=UTF-8 scalafmtCheckAll scalafmtSbtCheck |