Skip to content

Commit

Permalink
appveyor: build unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
derselbst committed Apr 7, 2018
1 parent fdc943b commit 2fbcd84
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .appveyor-vcpkg.yml
Expand Up @@ -56,7 +56,9 @@ build_script:
- mkdir build
- cd build
- cmake -G "%generator%" %CMAKE_FLAGS% -Denable-pkgconfig=0 -DCMAKE_TOOLCHAIN_FILE=c:/Tools/vcpkg/scripts/buildsystems/vcpkg.cmake ..
- cmake --build . --config Release
- cmake --build . --config Release # build libfluidsynth and fluidsynth exec
- cmake -Denable-tests=1 ..
- cmake --build . --config Release --target check # build unittests

after_build:
- 7z a fluidsynth.zip %APPVEYOR_BUILD_FOLDER%\build\src\Release\*
Expand Down
4 changes: 3 additions & 1 deletion .appveyor.yml
Expand Up @@ -58,7 +58,9 @@ build_script:
- mkdir build
- cd build
- cmake -G "%generator%" ..
- cmake --build . --config Release
- cmake --build . --config Release # build libfluidsynth and fluidsynth exec
- cmake -Denable-tests=1 ..
- cmake --build . --config Release --target check # build unittests

after_build:
- 7z a fluidsynth.zip %APPVEYOR_BUILD_FOLDER%\build\src\Release\* c:\deps\bin\libglib*.dll c:\deps\bin\libgthread*.dll c:\deps\bin\*intl*.dll
Expand Down

0 comments on commit 2fbcd84

Please sign in to comment.