Skip to content

Commit d800d97

Browse files
committed
Add additional intel language standards
1 parent 7ddf137 commit d800d97

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ jobs:
743743
fail-fast: false
744744
matrix:
745745
compiler: [ intel ]
746-
standard: [ c++20 ]
746+
standard: [ 14, 17, 20, 23 ]
747747
steps:
748748
- uses: actions/checkout@v4
749749
with:
@@ -791,7 +791,12 @@ jobs:
791791
run: |
792792
cd ../boost-root
793793
mkdir __build__ && cd __build__
794-
cmake -DCMAKE_C_COMPILER=icx -DCMAKE_CXX_COMPILER=icpx -DBOOST_INCLUDE_LIBRARIES=$LIBRARY -DBUILD_TESTING=ON ..
794+
cmake -DCMAKE_C_COMPILER=icx \
795+
-DCMAKE_CXX_COMPILER=icpx \
796+
-DCMAKE_CXX_STANDARD=${{ matrix.standard }} \
797+
-DCMAKE_CXX_STANDARD_REQUIRED=ON \
798+
-DBOOST_INCLUDE_LIBRARIES=$LIBRARY \
799+
-DBUILD_TESTING=ON ..
795800
796801
- name: Build tests
797802
run: |

0 commit comments

Comments
 (0)