File tree 1 file changed +17
-4
lines changed
1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -511,30 +511,43 @@ jobs:
511
511
-DCMAKE_CXX_STANDARD_COMPUTED_DEFAULT="14" \
512
512
-DCMAKE_VERBOSE_MAKEFILE=ON \
513
513
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
514
+
514
515
- name : Build
515
516
shell : bash
516
517
run : |
517
518
set +e; source /opt/intel/oneapi/setvars.sh; set -e
518
519
cmake --build build -j 2
520
+
519
521
- name : Python tests
520
522
shell : bash
521
523
run : |
522
524
set +e; source /opt/intel/oneapi/setvars.sh; set -e
523
525
sudo service apport stop
524
- cmake --build build --target check \
526
+ cmake --build build \
525
527
-DCMAKE_CXX_COMPILER_ID="Clang" \
526
528
-DCMAKE_CXX_COMPILER_VERSION=12.0 \
527
- -DCMAKE_CXX_STANDARD_COMPUTED_DEFAULT="14"
529
+ -DCMAKE_CXX_STANDARD_COMPUTED_DEFAULT="14" \
530
+ --target check
531
+
528
532
- name : C++ tests
529
533
shell : bash
530
534
run : |
531
535
set +e; source /opt/intel/oneapi/setvars.sh; set -e
532
- cmake --build build --target cpptest
536
+ cmake --build build \
537
+ -DCMAKE_CXX_COMPILER_ID="Clang" \
538
+ -DCMAKE_CXX_COMPILER_VERSION=12.0 \
539
+ -DCMAKE_CXX_STANDARD_COMPUTED_DEFAULT="14" \
540
+ --target cpptest
541
+
533
542
- name : Interface test
534
543
shell : bash
535
544
run : |
536
545
set +e; source /opt/intel/oneapi/setvars.sh; set -e
537
- cmake --build build --target test_cmake_build
546
+ cmake --build build \
547
+ -DCMAKE_CXX_COMPILER_ID="Clang" \
548
+ -DCMAKE_CXX_COMPILER_VERSION=12.0 \
549
+ -DCMAKE_CXX_STANDARD_COMPUTED_DEFAULT="14" \
550
+ --target test_cmake_build
538
551
539
552
540
553
# Testing on CentOS (manylinux uses a centos base, and this is an easy way
You can’t perform that action at this time.
0 commit comments