mirror of
https://github.com/ArashPartow/exprtk.git
synced 2025-06-12 16:27:23 +00:00
23 lines
300 B
YAML
23 lines
300 B
YAML
dist: bionic
|
|
|
|
language: cpp
|
|
|
|
sudo: required
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-7
|
|
- g++-7
|
|
|
|
before_install:
|
|
- sudo add-apt-repository -y ppa:edd/misc
|
|
|
|
script:
|
|
- export CC=gcc-7
|
|
- export CXX=g++-7
|
|
- make clean all -j 2
|
|
- ./exprtk_test
|