Skip to content

Commit

Permalink
Merge pull request #138 from thbeu/add-ci-nmake
Browse files Browse the repository at this point in the history
Build with MSVC makefile via GitHub Actions
  • Loading branch information
rouault authored Jul 24, 2024
2 parents 193f6d9 + d2f4ff3 commit 2cc2975
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,17 @@ jobs:
cp ./build/bin/*.dll ./build/tests/
ctest --test-dir build --build-config Release --verbose
shell: C:\cygwin\bin\bash.exe -eo pipefail -o igncr '{0}'

build-nmake:
name: windows-makefile
runs-on: windows-latest

steps:
- name: Checkout Code
uses: actions/checkout@v4

- name: Make
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
nmake /f makefile.vc

0 comments on commit 2cc2975

Please sign in to comment.