This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
Update sbt-sonatype to 3.10.0 #54
Workflow file for this run
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: Continuous Integration | |
on: | |
pull_request: | |
branches: [master] | |
push: | |
branches: [master] | |
tags: [v*] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
regular: | |
name: Regular Tests | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
scala: [3.1.0, 2.13.7, 2.12.15] | |
java: [adopt@1.8] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout current branch (full) | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Run Tests | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 10 | |
max_attempts: 3 | |
command: sbt ++${{ matrix.scala }} 'Test/compile; test' | |
esdb: | |
name: Integration Tests | |
needs: [regular] | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
scala: [3.1.0, 2.13.7, 2.12.15] | |
java: [adopt@1.8] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout current branch (full) | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Start ESDB | |
run: | | |
pushd .docker | |
./esdb.sh up -d | |
popd | |
- name: Run Integration Tests | |
env: | |
AKKA_TEST_TIMEFACTOR: 2.0 | |
AKKA_TEST_LOGLEVEL: OFF | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 10 | |
max_attempts: 3 | |
command: sbt ++${{ matrix.scala }} 'It/test' | |
- name: Stop ESDB | |
if: always() | |
run: | | |
pushd .docker | |
./esdb.sh down | |
popd | |
legacy: | |
name: Legacy Integration Tests | |
needs: [regular] | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
scala: [3.1.0, 2.13.7, 2.12.15] | |
java: [adopt@1.8] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout current branch (full) | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Start Legacy ESDB | |
run: | | |
pushd .docker | |
./legacy.sh up -d | |
popd | |
- name: Run Integration Tests | |
env: | |
AKKA_TEST_TIMEFACTOR: 2.0 | |
AKKA_TEST_LOGLEVEL: OFF | |
uses: nick-invision/retry@v2 | |
with: | |
timeout_minutes: 10 | |
max_attempts: 3 | |
command: sbt ++${{ matrix.scala }} 'It/test' | |
- name: Stop Legacy ESDB | |
if: always() | |
run: | | |
pushd .docker | |
./legacy.sh down | |
popd |