forked from FrontEndART/SonarQube-plug-in
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
28 lines (24 loc) · 911 Bytes
/
.travis.yml
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
language: c
# Default environment: Container-based (sudo-less) Ubuntu Trusty 14.04.
os: linux
dist: bionic
sudo: false
# Default dependency installation step: nop intentionally.
# Jobs can add their own dependencies by redefinig the 'install' stage in the matrix below.
install:
- wget https://github.com/jgm/pandoc/releases/download/2.2.3.2/pandoc-2.2.3.2-linux.tar.gz -O /tmp/pandoc.tar.gz
- tar -xzf /tmp/pandoc.tar.gz
- export PATH="$PWD/pandoc-2.2.3.2/bin:$PATH"
# Default job task: run tests as defined in the $OPT environment variable.
# Jobs can redefine the 'script' stage in the matrix below.
script:
# All the job definitions in the matrix.
matrix:
include:
- env:
- JOBNAME="Build test"
script: tools/build.py --dist
- env:
- JOBNAME="Regression test"
script: python3 tools/run-test.py --init --print-log -sv 7.9.3 -scv 4.2.0.1873
fast_finish: true