-
Notifications
You must be signed in to change notification settings - Fork 3
/
.appveyor.yml
33 lines (30 loc) · 1.39 KB
/
.appveyor.yml
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
environment:
matrix:
- TARGET: cygwin64
install:
- cmd: if [%TARGET%]==[cygwin64] (
curl -sSL -o C:\cygwin64\setup-x86_64.exe "https://cygwin.com/setup-x86_64.exe" )
- cmd: if [%TARGET%]==[cygwin64] (
C:\cygwin64\setup-x86_64.exe -qgnNdO -l C:\cygwin64\var\cache\setup
-R c:\cygwin64 -s http://cygwin.mirror.constant.com
-P texlive-collection-bibtexextra
-P texlive-collection-binextra
-P texlive-collection-langjapanese
-P texlive-collection-latex
-P texlive-collection-latexextra
-P texlive-collection-latexrecommended
-P texlive-collection-plaingeneric
-P texlive-collection-mathscience )
before_build:
- cmd: if [%TARGET%]==[cygwin64] (
C:\cygwin64\bin\bash -e -l -c "git config --system --add safe.directory '*'" )
- cmd: if [%TARGET%]==[cygwin64] (
C:\cygwin64\bin\bash -e -l -c "git clone $(cygpath $APPVEYOR_BUILD_FOLDER)" )
build_script:
- cmd: if [%TARGET%]==[cygwin64] (
C:\cygwin64\bin\bash -e -l -c "cd $APPVEYOR_PROJECT_NAME && MAKE_COLORS=always make -s check" )
- cmd: if [%TARGET%]==[cygwin64] (
C:\cygwin64\bin\bash -e -l -c "cd $APPVEYOR_PROJECT_NAME && MAKE_COLORS=always make -s check BUILDDIR=.build" )
# Check if the working directory is not dirty.
- cmd: if [%TARGET%]==[cygwin64] (
C:\cygwin64\bin\bash -e -l -c "cd $APPVEYOR_PROJECT_NAME && make check-dirty" )