Skip to content

Commit

Permalink
fix: make nightlies not fail silently (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-alfers authored Jan 10, 2024
1 parent 01a3a7f commit d8c6b87
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# { scalaVersion: "2.13", jdkVersion: "1.11.0", jvmName: "temurin:1.11.0", extraOpts: '-J-XX:+UnlockExperimentalVMOptions -J-XX:+UseJVMCICompiler', testCmd: "test"}
- { scalaVersion: "2.13", jdkVersion: "1.17.0", jvmName: "temurin:1.17.0", extraOpts: '', testCmd: "test"}
- { scalaVersion: "3.3", jdkVersion: "1.17.0", jvmName: "temurin:1.17.0", extraOpts: '', testCmd: "core/test"}
- { scalaVersion: "2.13", jdkVersion: "1.21.0", jvmName: "temurin:1.21", extraOpts: '' }
- { scalaVersion: "2.13", jdkVersion: "1.21.0", jvmName: "temurin:1.21", extraOpts: '', testCmd: "test"}
steps:
- name: Checkout
uses: actions/[email protected]
Expand All @@ -44,8 +44,8 @@ jobs:
- name: sbt ${{ matrix.testCmd }}
run: |-
cp .jvmopts-ci .jvmopts
sbt ++${{ matrix.scalaVersion }} \
${{ matrix.testCmd }} ${{ matrix.extraOpts }}
sbt ${{ matrix.extraOpts }} \
++${{ matrix.scalaVersion }} ${{ matrix.testCmd }}
- name: Email on failure
if: ${{ failure() }}
Expand Down Expand Up @@ -98,8 +98,8 @@ jobs:
- name: sbt ${{ matrix.testCmd }}
run: |-
cp .jvmopts-ci .jvmopts
sbt ++${{ matrix.scalaVersion }} \
-Dakka.persistence.r2dbc.dialect=yugabyte ${{ matrix.extraOpts }} ${{ matrix.extraOpts }}
sbt ${{ matrix.extraOpts }} -Dconfig.resource=application-yugabyte.conf \
++${{ matrix.scalaVersion }} ${{ matrix.testCmd }}
- name: Email on failure
if: ${{ failure() }}
Expand Down

0 comments on commit d8c6b87

Please sign in to comment.