OSDN Git Service

Add a .travis.yml file to tell Travis CI what to build. master
authorFujii Masao <fujii@postgresql.org>
Fri, 4 Oct 2019 14:58:30 +0000 (23:58 +0900)
committerFujii Masao <fujii@postgresql.org>
Fri, 4 Oct 2019 14:58:30 +0000 (23:58 +0900)
.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..0c5567c
--- /dev/null
@@ -0,0 +1,27 @@
+language: c
+
+compiler: gcc
+
+env:
+   matrix:
+      - PGBRANCH=master
+
+before_install:
+   - CURDIR=$(pwd)
+
+before_script:
+   - mkdir opt
+   - SENNA_INS=${CURDIR}/opt/senna-1.1.2-fast
+   - SENNA_CFG=${SENNA_INS}/bin/senna-cfg
+
+script:
+   - ./configure --prefix=${SENNA_INS} --without-mecab
+   - make install
+
+after_script:
+   - if [ -f regression.diffs ]; then cat regression.diffs; fi
+
+notifications:
+   email:
+      on_success: change
+      on_failure: always