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
This commit is contained in:
committed by
Arash Partow
parent
f46bffcd69
commit
ddf67a25eb
.circleci
Makefileexprtk.hppexprtk_benchmark.cppexprtk_functional_ext_test.txtexprtk_functional_test.txtexprtk_simple_example_01.cppexprtk_simple_example_02.cppexprtk_simple_example_03.cppexprtk_simple_example_04.cppexprtk_simple_example_05.cppexprtk_simple_example_06.cppexprtk_simple_example_07.cppexprtk_simple_example_08.cppexprtk_simple_example_09.cppexprtk_simple_example_10.cppexprtk_simple_example_11.cppexprtk_simple_example_12.cppexprtk_simple_example_13.cppexprtk_simple_example_14.cppexprtk_simple_example_15.cppexprtk_simple_example_16.cppexprtk_simple_example_17.cppexprtk_simple_example_18.cppexprtk_simple_example_19.cppexprtk_simple_example_20.cppexprtk_simple_example_21.cppexprtk_simple_example_22.cppexprtk_simple_example_23.cppexprtk_simple_example_24.cppexprtk_test.cpplicense.txtreadme.txt@ -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
|
||||
@ -32,6 +59,44 @@ workflows:
|
||||
version: 2
|
||||
build_and_test:
|
||||
jobs:
|
||||
- build_gcc_09
|
||||
- build_gcc_10
|
||||
- build_gcc_latest
|
||||
- build_gcc_09:
|
||||
filters:
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
- release
|
||||
|
||||
- build_gcc_10:
|
||||
filters:
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
- release
|
||||
|
||||
- build_gcc_11:
|
||||
filters:
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
- release
|
||||
|
||||
- build_gcc_12:
|
||||
filters:
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
- release
|
||||
|
||||
- build_gcc_13:
|
||||
filters:
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
- release
|
||||
|
||||
- build_gcc_latest:
|
||||
filters:
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
- release
|
||||
|
Reference in New Issue
Block a user