C++ Mathematical Expression Library (ExprTk) https://www.partow.net/programming/exprtk/index.html

This commit is contained in:
ArashPartow
2023-01-01 02:18:35 +00:00
parent 806c519c91
commit f46bffcd69
26 changed files with 1235 additions and 787 deletions

View File

@ -1,18 +1,18 @@
version: 2.1
jobs:
build_gcc_6:
build_gcc_09:
docker:
- image: gcc:6
- image: gcc:9
steps:
- checkout
- run: c++ --version
- run: make all -j 2
- run: ./exprtk_test
build_gcc_7:
build_gcc_10:
docker:
- image: gcc:7
- image: gcc:10
steps:
- checkout
- run: c++ --version
@ -32,6 +32,6 @@ workflows:
version: 2
build_and_test:
jobs:
- build_gcc_6
- build_gcc_7
- build_gcc_09
- build_gcc_10
- build_gcc_latest