Skip to content

Commit

Permalink
test multiple msys2do calls in the same step
Browse files Browse the repository at this point in the history
  • Loading branch information
1138-4EB authored and eine committed May 28, 2020
1 parent f8beca8 commit aa585cb
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,12 @@ jobs:
rm -rf node_modules
- name: run action
uses: ./
- name: test MSYS
- name: test
run: |
$env:MSYSTEM = 'MSYS'
msys2 ./test.sh MSYS
- name: test MINGW64
run: |
$env:MSYSTEM = 'MINGW64'
msys2 ./test.sh MINGW64
- name: test MINGW32
run: |
$env:MSYSTEM = 'MINGW32'
msys2 ./test.sh MINGW32
Expand All @@ -43,19 +39,13 @@ jobs:
rm -rf node_modules
- name: run action
uses: ./
- name: test MSYS
- name: test
shell: cmd
run: |
set MSYSTEM=MSYS
msys2 ./test.sh MSYS
- name: test MINGW64
shell: cmd
run: |
set MSYSTEM=MINGW64
msys2 ./test.sh MINGW64
- name: test MINGW32
shell: cmd
run: |
set MSYSTEM=MINGW32
msys2 ./test.sh MINGW32
Expand Down

0 comments on commit aa585cb

Please sign in to comment.