forked from gap-system/gap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
43 lines (37 loc) · 1.41 KB
/
Copy path.appveyor.yml
File metadata and controls
43 lines (37 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
42
43
# set clone depth
clone_depth: 5 # clone entire repository history if not defined
environment:
CFLAGS: "-fprofile-arcs -ftest-coverage"
LDFLAGS: "-fprofile-arcs"
TEST_SUITE: testinstall
matrix:
- CYG_ARCH: x86
CYG_ROOT: C:\cygwin
ABI: 32
- CYG_ARCH: x86_64
CYG_ROOT: C:\cygwin64
# FIXME: HPC-GAP builds on AppVeyor are disabled for now, as they experience
# weird errors in building ward (which I cannot replicate on a Windows VM).
# - CYG_ARCH: x86
# CYG_ROOT: C:\cygwin
# ABI: 32
# HPCGAP: yes
# BUILDDIR: build # HPC-GAP only supports kernel extensions for of out-of-tree builds
# - CYG_ARCH: x86_64
# CYG_ROOT: C:\cygwin64
# HPCGAP: yes
# BUILDDIR: build # HPC-GAP only supports kernel extensions for of out-of-tree builds
cache:
- bootstrap-pkg-full.tar.gz
install:
- '%CYG_ROOT%\setup-%CYG_ARCH%.exe -qnNdO -R %CYG_ROOT% -s http://cygwin.mirror.constant.com -l %CYG_ROOT%/var/cache/setup -P libgmp-devel'
# scripts that run after cloning repository
build_script:
- SET "PATH=%CYG_ROOT%\bin;%PATH%"
- bash -lc "cd $APPVEYOR_BUILD_FOLDER && ./etc/ci-prepare.sh"
test_script:
- bash -lc "cd $APPVEYOR_BUILD_FOLDER && ./etc/ci.sh"
on_success:
- bash -lc "cd $APPVEYOR_BUILD_FOLDER && ./etc/ci-gather-coverage.sh"
- curl -s https://codecov.io/bash > codecov.sh
- bash -lc "cd $APPVEYOR_BUILD_FOLDER && ./codecov.sh"