Skip to content

Commit

Permalink
GHA updates (#540)
Browse files Browse the repository at this point in the history
* GHA updates
* update actions/setup-java 3 -> 4
* make `jobtype` more descriptive

* quoting jobtype
  • Loading branch information
mzuehlke authored Oct 20, 2024
1 parent 05d6d1d commit 19fa55e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,43 +15,43 @@ jobs:
- os: ubuntu-latest
java: 8
distribution: zulu
jobtype: 1
jobtype: sbt-1
- os: ubuntu-latest
java: 8
distribution: temurin
jobtype: 2
jobtype: sbt-2
- os: ubuntu-latest
java: 21
distribution: temurin
jobtype: 1
jobtype: sbt-1
- os: ubuntu-latest
java: 24-ea
distribution: temurin
jobtype: 1
jobtype: sbt-1
- os: windows-latest
java: 11
distribution: temurin
jobtype: 1
jobtype: sbt-1
env:
# define Java options for both official sbt and sbt-extras
JAVA_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
JVM_OPTS: -Xms2048M -Xmx2048M -Xss6M -XX:ReservedCodeCacheSize=256M -Dfile.encoding=UTF-8
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: "${{ matrix.distribution }}"
java-version: "${{ matrix.java }}"
cache: sbt
- uses: sbt/setup-sbt@v1
- name: Build and test (sbt 1.x)
if: ${{ matrix.jobtype == 1 }}
if: ${{ matrix.jobtype == 'sbt-1' }}
shell: bash
run: |
sbt -v ++2.12.x scripted
- name: Build and test (sbt 2.x)
if: ${{ matrix.jobtype == 2 }}
if: ${{ matrix.jobtype == 'sbt-2' }}
shell: bash
run: |
sbt -v ++3.x scripted

0 comments on commit 19fa55e

Please sign in to comment.