commit 317d33131581a90edf08891d8b370b25399097a4 Author: vaydheesh Date: Fri Jul 12 13:03:17 2019 +0530 Sync: apertium/master diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..095963c --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +dist: xenial +language: cpp +compiler: + - clang + - gcc +before_install: + - wget https://apertium.projectjj.com/apt/install-nightly.sh -O - | sudo bash + - sudo apt-get install -y lttoolbox-dev libxml2-utils xsltproc libpcre3 +script: + - ./autogen.sh + - ./configure + - make + - make test diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 4275875..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,14 +0,0 @@ -node { - stage 'Checkout' - checkout scm - - stage 'Build' - sh "./autogen.sh && make clean && make" - - stage 'Test' - sh "make test" - - stage 'Archive' - sh "rm apertium.zip || true" - zip zipFile: 'apertium.zip', archive: true, dir: 'apertium' -}