Skip to content

Commit

Permalink
Merge pull request #1972 from stweil/appveyor
Browse files Browse the repository at this point in the history
Use env variable in AppVeyor configuration
  • Loading branch information
zdenop authored Oct 9, 2018
2 parents d93094b + 488cc49 commit 53ce4cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
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 53ce4cf

Please sign in to comment.