Skip to content

Commit

Permalink
Use env variable in AppVeyor configuration
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Oct 9, 2018
1 parent 7be5f74 commit 488cc49
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appveyor.yml
Expand Up @@ -29,17 +29,17 @@ before_build:
build_script:
- mkdir build
- mkdir build\bin
- mkdir build\bin\Release
- mkdir build\bin\%CONFIGURATION%
- cd build
#- cmd: 'echo local_settings: > cppan.yml'
#- cmd: 'echo generator: %generator% >> cppan.yml'
#- cmd: 'echo use_shared_libs: true >> cppan.yml'
#- cppan --build ..
- cmake .. -G "Visual Studio %vs_ver%%vs_platform%"
#- cmake --build . --config Release > bin\Release\log.txt 2>&1
- cmake --build . --config Release
#- cmake --build . --config %CONFIGURATION% > build\bin\%CONFIGURATION%\log.txt 2>&1
- cmake --build . --config %CONFIGURATION%

artifacts:
- path: build\bin\Release
- path: build\bin\%CONFIGURATION%
#- path: build
name: tesseract-$(APPVEYOR_BUILD_VERSION)

0 comments on commit 488cc49

Please sign in to comment.