Skip to content

Commit

Permalink
the rest
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoz committed Jul 15, 2024
1 parent 948d0ff commit 08a0db2
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,10 @@ jobs:
fail-fast: false
matrix:
bitness:
- "x64"
- "x86"
- arg: "x64"
WIN64: define
- arg: "x86"
WIN64: undef
steps:
- run: git config --global core.autocrlf false
- uses: actions/checkout@v4
Expand Down Expand Up @@ -496,9 +498,9 @@ jobs:
- name: Build
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" ${{ matrix.bitness }}
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" ${{ matrix.bitness.arg }}
cd win32
nmake CCTYPE=MSVC142 CFG=Debug
nmake CCTYPE=MSVC142 CFG=Debug WIN64=${{ matrix.bitness.WIN64 }}
- name: Show Config
shell: cmd
run: |
Expand All @@ -507,9 +509,9 @@ jobs:
- name: Run Tests
shell: cmd
run: |
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" ${{ matrix.bitness.arg }}
cd win32
nmake CCTYPE=MSVC142 CFG=Debug test
nmake CCTYPE=MSVC142 CFG=Debug WIN64=${{ matrix.bitness.WIN64 }} test
# _ __ _ _
# _ __ ___ (_)_ __ __ ___ __/ /_ | || |
Expand Down

0 comments on commit 08a0db2

Please sign in to comment.