Skip to content

Commit

Permalink
ci(containerised-test): skip MT entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
caspiano committed May 20, 2022
1 parent df11496 commit f7b572a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/containerised-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
stable: false
MT: true
continue-on-error: ${{ !matrix.stable }}
if: ${{ inputs.skip_mt == 'false' || (inputs.skip_mt == 'true' && matrix.MT == 'false') }}
steps:
- name: Install crystal
uses: crystal-lang/[email protected]
Expand Down Expand Up @@ -104,6 +105,6 @@ jobs:
- name: Run docker-compose test environment
if: ${{ !matrix.canary || steps.diff.outputs.any_changed }}
timeout-minutes: 15
run: ./test ${{ (matrix.MT && inputs.test_mt == 'true' ) && '-Dpreview_mt' || '' }} --order random
run: ./test ${{ matrix.MT && '-Dpreview_mt' || '' }} --order random
env:
CRYSTAL_VERSION: ${{ matrix.crystal }}

0 comments on commit f7b572a

Please sign in to comment.