We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ddf137 commit d800d97Copy full SHA for d800d97
.github/workflows/ci.yml
@@ -743,7 +743,7 @@ jobs:
743
fail-fast: false
744
matrix:
745
compiler: [ intel ]
746
- standard: [ c++20 ]
+ standard: [ 14, 17, 20, 23 ]
747
steps:
748
- uses: actions/checkout@v4
749
with:
@@ -791,7 +791,12 @@ jobs:
791
run: |
792
cd ../boost-root
793
mkdir __build__ && cd __build__
794
- cmake -DCMAKE_C_COMPILER=icx -DCMAKE_CXX_COMPILER=icpx -DBOOST_INCLUDE_LIBRARIES=$LIBRARY -DBUILD_TESTING=ON ..
+ 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 ..
800
801
- name: Build tests
802
0 commit comments