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

Signed-off-by: Arash Partow <partow@gmail.com>
This commit is contained in:
ArashPartow
2024-01-01 00:00:00 +00:00
committed by Arash Partow
parent f46bffcd69
commit a4b17d543f
33 changed files with 66475 additions and 54058 deletions

View File

@ -19,6 +19,33 @@ jobs:
- run: make all -j 2
- run: ./exprtk_test
build_gcc_11:
docker:
- image: gcc:11
steps:
- checkout
- run: c++ --version
- run: make all -j 2
- run: ./exprtk_test
build_gcc_12:
docker:
- image: gcc:12
steps:
- checkout
- run: c++ --version
- run: make all -j 2
- run: ./exprtk_test
build_gcc_13:
docker:
- image: gcc:13
steps:
- checkout
- run: c++ --version
- run: make all -j 2
- run: ./exprtk_test
build_gcc_latest:
docker:
- image: gcc:latest
@ -34,4 +61,7 @@ workflows:
jobs:
- build_gcc_09
- build_gcc_10
- build_gcc_11
- build_gcc_12
- build_gcc_13
- build_gcc_latest