Skip to content

Commit

Permalink
missed changes
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Jun 3, 2024
1 parent c504696 commit 211b0c7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nightly-pekko.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:

jobs:
test:
name: Build and Test with Pekko 1.0
name: Build and Test with Pekko ${{ matrix.pekko-version }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
Expand Down Expand Up @@ -51,15 +51,15 @@ jobs:
- name: Cache Coursier cache
uses: coursier/cache-action@v6

- name: Run tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }}
run: sbt -Dpekko.build.pekko.version=1.0.x "++${{ matrix.scala-version }} test"
- name: Run tests with Scala ${{ matrix.scala-version }} and Java ${{ matrix.java-version }} with Pekko ${{ matrix.pekko-version }}
run: sbt -Dpekko.build.pekko.version=${{ matrix.pekko-version }} "++${{ matrix.scala-version }} test"

- name: Print logs on failure
if: ${{ failure() }}
run: find . -name "*.log" -exec ./scripts/cat-log.sh {} \;

integration-test:
name: Integration tests with Pekko 1.0
name: Integration tests with Pekko ${{ matrix.pekko-version }}
runs-on: ubuntu-22.04
steps:
- name: Checkout
Expand All @@ -84,7 +84,7 @@ jobs:
uses: coursier/cache-action@v6

- name: Run multi-broker and long running integration tests
run: sbt -Dpekko.build.pekko.version=1.0.x "tests/IntegrationTest/test"
run: sbt -Dpekko.build.pekko.version=${{ matrix.pekko-version }} "tests/IntegrationTest/test"

- name: Print logs on failure
if: ${{ failure() }}
Expand Down

0 comments on commit 211b0c7

Please sign in to comment.