mirror of
https://github.com/ArashPartow/exprtk.git
synced 2025-06-22 16:28:57 +00:00
C++ Mathematical Expression Library (ExprTk) http://www.partow.net/programming/exprtk/index.html
This commit is contained in:
committed by
ArashPartow
parent
f32d2b4bbb
commit
c7c219480d
34
.circleci/config.yml
Normal file
34
.circleci/config.yml
Normal file
@ -0,0 +1,34 @@
|
||||
version: 2.1
|
||||
jobs:
|
||||
|
||||
build_gcc_6:
|
||||
docker:
|
||||
- image: gcc:6
|
||||
steps:
|
||||
- checkout
|
||||
- run: make all -j 2
|
||||
- run: ./exprtk_test
|
||||
|
||||
build_gcc_7:
|
||||
docker:
|
||||
- image: gcc:7
|
||||
steps:
|
||||
- checkout
|
||||
- run: make all -j 2
|
||||
- run: ./exprtk_test
|
||||
|
||||
build_gcc_latest:
|
||||
docker:
|
||||
- image: gcc:latest
|
||||
steps:
|
||||
- checkout
|
||||
- run: make all -j 2
|
||||
- run: ./exprtk_test
|
||||
|
||||
workflows:
|
||||
version: 2
|
||||
build_and_test:
|
||||
jobs:
|
||||
- build_gcc_6
|
||||
- build_gcc_7
|
||||
- build_gcc_latest
|
Reference in New Issue
Block a user