diff options
| author | MSP-Greg <Greg.mpls@gmail.com> | 2023-11-16 14:46:27 -0600 |
|---|---|---|
| committer | Kevin Newton <kddnewton@gmail.com> | 2023-11-17 09:47:20 -0500 |
| commit | 9ba49c61c28691c131e97d5ea0daf35ab9ea353f (patch) | |
| tree | 7e9d52a14dbbebd83cf463f88aa6bd745493894c | |
| parent | 4a26a65e428fbe4088c86068d5525d1f343702ee (diff) | |
mingw.yml - remove encoding, run tests in cmd shell
| -rw-r--r-- | .github/workflows/mingw.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml index 5ddcb59e76..597fc44a67 100644 --- a/.github/workflows/mingw.yml +++ b/.github/workflows/mingw.yml @@ -125,6 +125,7 @@ jobs: - name: test timeout-minutes: 30 run: make test + shell: cmd env: GNUMAKEFLAGS: '' RUBY_TESTOPTS: '-v --tty=no' @@ -132,9 +133,8 @@ jobs: - name: test-all timeout-minutes: 45 + shell: cmd run: | - # Actions uses UTF8, causes test failures, similar to normal OS setup - chcp.com 437 make ${{ StartsWith(matrix.test_task, 'test/') && matrix.test_task || 'test-all' }} env: RUBY_TESTOPTS: >- @@ -147,6 +147,7 @@ jobs: timeout-minutes: 10 run: | make ${{ StartsWith(matrix.test_task, 'spec/') && matrix.test_task || 'test-spec' }} + shell: cmd if: ${{ matrix.test_task == 'check' || matrix.test_task == 'test-spec' || StartsWith(matrix.test_task, 'spec/') }} - uses: ./src/.github/actions/slack |
