Skip to content

Commit

Permalink
ICU-20032 re-enable Travis (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 authored Jul 18, 2018
1 parent b12a927 commit 66b4b68
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
image: Visual Studio 2017
platform: x64
configuration: Release
build:
project: icu4c/source/allinone/allinone.sln

test_script:
- icu4c/source/allinone/icucheck.bat x64 Release
40 changes: 40 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
matrix:
include:
- language: java
env: BUILD=ICU4J
script: cd icu4j && ant init && ant check
after_failure:
- cat `find out/junit-results -name "*.txt" -exec grep -l FAILED {} \;`

- language: cpp
env: BUILD=ICU4C_GCC
compiler: gcc
script: cd icu4c/source && ./runConfigureICU Linux && make -j2 check

- language: cpp
env: BUILD=ICU4C_CLANG
compiler: clang
script: cd icu4c/source && ./runConfigureICU Linux && make -j2 check

- language: cpp
env: BUILD=MACINTOSH
os: osx
compiler: clang
script: cd icu4c/source && ./runConfigureICU MacOSX && make -j2 check

- language: cpp
os: linux
dist: trusty
compiler: clang
addons:
apt:
update: true
sources:
- llvm-toolchain-trusty-5.0
packages:
- clang-5.0
env:
- BUILD=ASAN
script:
- echo not yet
# - cd icu4c/source && CPPFLAGS="-fsanitize=address" LDFLAGS="-fsanitize=address" ./runConfigureICU --enable-debug --disable-release Linux --disable-renaming && make -j2 check

0 comments on commit 66b4b68

Please sign in to comment.