mirror of
https://github.com/ArashPartow/exprtk.git
synced 2025-07-28 03:27:30 +00:00
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:
committed by
Arash Partow
parent
f46bffcd69
commit
a4b17d543f
@ -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
|
||||
|
Reference in New Issue
Block a user