|
@@ -29,6 +29,7 @@ env:
|
|
|
jobs:
|
|
jobs:
|
|
|
eunit_and_proper:
|
|
eunit_and_proper:
|
|
|
runs-on: ${{ inputs.runner }}
|
|
runs-on: ${{ inputs.runner }}
|
|
|
|
|
+ name: "eunit_and_proper (${{ matrix.profile }})"
|
|
|
strategy:
|
|
strategy:
|
|
|
fail-fast: false
|
|
fail-fast: false
|
|
|
matrix:
|
|
matrix:
|
|
@@ -69,6 +70,7 @@ jobs:
|
|
|
|
|
|
|
|
ct_docker:
|
|
ct_docker:
|
|
|
runs-on: ${{ inputs.runner }}
|
|
runs-on: ${{ inputs.runner }}
|
|
|
|
|
+ name: "ct_docker (${{ matrix.app }}-${{ matrix.suitegroup }})"
|
|
|
strategy:
|
|
strategy:
|
|
|
fail-fast: false
|
|
fail-fast: false
|
|
|
matrix:
|
|
matrix:
|
|
@@ -116,6 +118,7 @@ jobs:
|
|
|
|
|
|
|
|
ct:
|
|
ct:
|
|
|
runs-on: ${{ inputs.runner }}
|
|
runs-on: ${{ inputs.runner }}
|
|
|
|
|
+ name: "ct (${{ matrix.app }}-${{ matrix.suitegroup }})"
|
|
|
strategy:
|
|
strategy:
|
|
|
fail-fast: false
|
|
fail-fast: false
|
|
|
matrix:
|
|
matrix:
|
|
@@ -155,6 +158,17 @@ jobs:
|
|
|
name: logs-${{ matrix.profile }}-${{ matrix.prefix }}-${{ matrix.otp }}-sg${{ matrix.suitegroup }}
|
|
name: logs-${{ matrix.profile }}-${{ matrix.prefix }}-${{ matrix.otp }}-sg${{ matrix.suitegroup }}
|
|
|
path: _build/test/logs
|
|
path: _build/test/logs
|
|
|
|
|
|
|
|
|
|
+ tests_passed:
|
|
|
|
|
+ needs:
|
|
|
|
|
+ - eunit_and_proper
|
|
|
|
|
+ - ct
|
|
|
|
|
+ - ct_docker
|
|
|
|
|
+ runs-on: ${{ inputs.runner }}
|
|
|
|
|
+ strategy:
|
|
|
|
|
+ fail-fast: false
|
|
|
|
|
+ steps:
|
|
|
|
|
+ - run: echo "All tests passed"
|
|
|
|
|
+
|
|
|
make_cover:
|
|
make_cover:
|
|
|
needs:
|
|
needs:
|
|
|
- eunit_and_proper
|
|
- eunit_and_proper
|