remove redundant code from github action script
This commit is contained in:
parent
42c09b36ee
commit
ee6e30e7ff
|
@ -182,8 +182,6 @@ jobs:
|
||||||
shell: bash
|
shell: bash
|
||||||
working-directory: nim-stew
|
working-directory: nim-stew
|
||||||
run: |
|
run: |
|
||||||
nimble install -y --depsOnly
|
|
||||||
nimble install -y stint
|
|
||||||
env TEST_LANG="${{ matrix.target.TEST_LANG }}" nimble test
|
env TEST_LANG="${{ matrix.target.TEST_LANG }}" nimble test
|
||||||
|
|
||||||
- name: Setup VCC (i386)
|
- name: Setup VCC (i386)
|
||||||
|
@ -192,20 +190,14 @@ jobs:
|
||||||
with:
|
with:
|
||||||
arch: amd64_x86
|
arch: amd64_x86
|
||||||
|
|
||||||
- name: Test using VCC (i386)
|
|
||||||
if: runner.os == 'Windows' && matrix.target.cpu == 'i386'
|
|
||||||
shell: cmd
|
|
||||||
working-directory: nim-stew
|
|
||||||
run: nimble testvcc
|
|
||||||
|
|
||||||
- name: Setup VCC (amd64)
|
- name: Setup VCC (amd64)
|
||||||
if: runner.os == 'Windows' && matrix.target.cpu == 'amd64'
|
if: runner.os == 'Windows' && matrix.target.cpu == 'amd64'
|
||||||
uses: ilammy/msvc-dev-cmd@v1.5.0
|
uses: ilammy/msvc-dev-cmd@v1.5.0
|
||||||
with:
|
with:
|
||||||
arch: x64
|
arch: x64
|
||||||
|
|
||||||
- name: Test using VCC (amd64)
|
- name: Test using VCC
|
||||||
if: runner.os == 'Windows' && matrix.target.cpu == 'amd64'
|
if: runner.os == 'Windows'
|
||||||
shell: cmd
|
shell: cmd
|
||||||
working-directory: nim-stew
|
working-directory: nim-stew
|
||||||
run: nimble testvcc
|
run: nimble testvcc
|
||||||
|
|
Loading…
Reference in New Issue