Skip to content

Commit

Permalink
Update .appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Senjosei authored May 5, 2020
1 parent 1f97d0a commit c1d27b2
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ install:
- call "%VCVARS_FILE%" %VCVARS_ARG%

before_build:
- mkdir skia
- cd skia
- Invoke-WebRequest -OutFile skia.zip https://github.com/aseprite/skia/releases/download/m81-b607b32047/Skia-Windows-Release-x64.zip
- 7z x skia.zip
- del /F /Q skia.zip
- cd ..
- git submodule update --init --recursive

after_build:
Expand All @@ -21,6 +27,7 @@ after_build:
- cd bin
- del /F /Q *.pdb
- del /F /Q *.ilk
- del /F /Q *tests.exe
- dir

artifacts:
Expand All @@ -31,6 +38,5 @@ artifacts:
build_script:
- mkdir build
- cd build
- cmake .. -G "NMake Makefiles" -DENABLE_TESTS=ON -DENABLE_UI=%ENABLE_UI%
- nmake
- ctest --output-on-failure
- cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DLAF_BACKEND=skia -DSKIA_DIR=C:\projects\aseprite\skia -DSKIA_LIBRARY_DIR=C:\projects\aseprite\skia\out\Release-x64 -G Ninja ..
- ninja aseprite

0 comments on commit c1d27b2

Please sign in to comment.