Skip to content

Commit

Permalink
try to fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Sep 26, 2024
1 parent b1c94aa commit 635dba8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,11 @@ jobs:
run: sbt -Dpekko.build.pekko.version=${{ matrix.pekkoVersion }} "++${{ matrix.scalaVersion }} IntegrationTest/compile"

- name: Run tests with Scala ${{ matrix.scalaVersion }} and Java ${{ matrix.javaVersion }}
run: sbt \
-Dpekko.build.pekko.version=${{ matrix.pekkoVersion }} \
-Dpekko.test.timefactor=2 \
"++${{ matrix.scalaVersion }} test"
run: |-
sbt \
-Dpekko.build.pekko.version=${{ matrix.pekkoVersion }} \
-Dpekko.test.timefactor=2 \
"++${{ matrix.scalaVersion }} test"
- name: Print logs on failure
if: ${{ failure() }}
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,10 @@ jobs:
run: sbt "++${{ matrix.scalaVersion }} IntegrationTest/compile" ${{ matrix.sbtOpts }}

- name: Run tests with Scala ${{ matrix.scalaVersion }} and Java ${{ matrix.javaVersion }}
run: sbt \
-Dpekko.test.timefactor=2 \
"++${{ matrix.scalaVersion }} test" ${{ matrix.sbtOpts }}
run: |-
sbt \
-Dpekko.test.timefactor=2 \
"++${{ matrix.scalaVersion }} test" ${{ matrix.sbtOpts }}
- name: Print logs on failure
if: ${{ failure() }}
Expand Down

0 comments on commit 635dba8

Please sign in to comment.