Skip to content

Commit 86e0c7e

Browse files
committed
added build test
1 parent 552e65c commit 86e0c7e

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ install:
1515
- gradle build
1616
- gradle jar
1717
- gradle javadoc
18+
- './release.sh nightly'
1819

1920
# command to run tests
2021
script:

appveyor.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
version: "{branch} {build}"
22

3+
4+
environment:
5+
global:
6+
CYG_ROOT: C:/cygwin
7+
CYG_CACHE: C:/cygwin/var/cache/setup
8+
CYG_MIRROR: http://mirrors.kernel.org/sourceware/cygwin/
9+
matrix:
10+
-
11+
CYG_ARCH: x86
12+
13+
init:
14+
- 'echo System architecture: %PLATFORM%'
15+
16+
install:
17+
- 'appveyor DownloadFile http://cygwin.com/setup-%CYG_ARCH%.exe -FileName setup.exe'
18+
- 'setup.exe -qnNdO -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" -P make -P git -P gcc-core -P ocaml -P ocaml-camlp4 -P ocaml-compiler-libs -P libncurses-devel -P unzip >NUL'
19+
- 'setup.exe -qnNdO -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" -P libmpfr-devel -P patch -P flexdll >NUL'
20+
- '%CYG_ROOT%/bin/bash -lc "cygcheck -dc cygwin"'
21+
322
build:
423
verbosity: detailed
524

@@ -8,6 +27,7 @@ build_script:
827
- gradlew.bat build
928
- gradlew.bat jar
1029
- gradlew.bat javadoc
30+
- '%CYG_ROOT%/bin/bash -lc "./release.sh nightly"'
1131

1232
test_script:
1333
- gradlew.bat check

0 commit comments

Comments
 (0)