1
0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.

39 lines
688 B
YAML
Executable File

dist: bionic
sudo: false
language: cpp
compiler:
- gcc
- clang
notifications:
email:
recipients:
- cschulte@kth.se
- guido.tack@monash.edu
on_success: never
on_failure: always
addons:
apt:
packages:
# For Gist.
- qt5-qmake
- qtbase5-dev
- qtdeclarative5-dev
- qt5-default
install:
- "[ $CXX = g++ ] && export CXX=g++ || true"
- "[ $CXX = clang++ ] && export CXX=clang++ || true"
script:
- ./configure --prefix=/usr --enable-gist
- make
# Build the test case suite, but do not execute the 50k test cases.
- make test
# Run a small subset of test cases, as defined by make check.
- LD_LIBRARY_PATH=. make check