[base] Allow fromSpliceUsingBuilder to bypass builder for single splice #320
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: Check | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, windows-latest] | |
java: [ 8, 17, 21 ] | |
runs-on: ${{ matrix.os }} | |
name: Test-${{ matrix.os }}-${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java }} | |
cache: 'sbt' | |
- name: set sbt settings | |
run: echo "Global / parallelExecution := false">parallelExecution.sbt | |
- name: sbt test | |
run: sbt test | |
mima: | |
needs: test | |
runs-on: ubuntu-latest | |
name: MigrationManager | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 8 | |
cache: 'sbt' | |
- name: sbt mimaReportBinaryIssues | |
run: sbt mimaReportBinaryIssues | |
- name: sbt tastyMiMaReportIssues | |
run: sbt tastyMiMaReportIssues | |
publish-artifact: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
java: [ 8 ] | |
runs-on: ${{ matrix.os }} | |
name: Artifact-${{ matrix.os }}-${{ matrix.java }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java }} | |
cache: 'sbt' | |
- name: publishLocal | |
run: sbt publishLocal | |
- name: move local publish to somewhere upload-artifact can reach | |
run: mv ~/.ivy2/local ./publish | |
- name: upload directory | |
uses: actions/upload-artifact@v4 | |
with: | |
name: publish-${{ matrix.os }}-${{ matrix.java }} | |
path: publish |