forked from storm-ptr/step
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
41 lines (35 loc) · 1.41 KB
/
.appveyor.yml
File metadata and controls
41 lines (35 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
image:
- Visual Studio 2019
- Ubuntu1804
platform: x64
configuration: Release
clone_depth: 1
install:
- ps: Invoke-WebRequest -Uri https://github.com/catchorg/Catch2/releases/download/v2.9.2/catch.hpp -OutFile $env:APPVEYOR_BUILD_FOLDER\..\catch.hpp
- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
build_script:
- cmd: cd %APPVEYOR_BUILD_FOLDER%/example/diff
- cmd: nmake /f makefile.windows
- cmd: nmake /f makefile.windows clean
- cmd: cd %APPVEYOR_BUILD_FOLDER%/example/suffix_tree_viz
- cmd: nmake /f makefile.windows
- cmd: nmake /f makefile.windows clean
- sh: cd $APPVEYOR_BUILD_FOLDER/example/diff
- sh: make -f ./makefile.ubuntu CXX=g++
- sh: make -f ./makefile.ubuntu clean
- sh: make -f ./makefile.ubuntu CXX=clang++
- sh: make -f ./makefile.ubuntu clean
- sh: cd $APPVEYOR_BUILD_FOLDER/example/suffix_tree_viz
- sh: make -f ./makefile.ubuntu CXX=g++
- sh: make -f ./makefile.ubuntu clean
- sh: make -f ./makefile.ubuntu CXX=clang++
- sh: make -f ./makefile.ubuntu clean
test_script:
- cmd: cd %APPVEYOR_BUILD_FOLDER%/test
- cmd: nmake /f makefile.windows test
- cmd: nmake /f makefile.windows clean
- sh: cd $APPVEYOR_BUILD_FOLDER/test
- sh: make -f ./makefile.ubuntu test CXX=g++
- sh: make -f ./makefile.ubuntu clean
- sh: make -f ./makefile.ubuntu test CXX=clang++
- sh: make -f ./makefile.ubuntu clean