Skip to content

Commit d6c174c

Browse files
committed
Tracking ci.yml changes from master.
1 parent aa209cc commit d6c174c

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/ci_sh_def.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -580,38 +580,38 @@ jobs:
580580
set +e; source /opt/intel/oneapi/setvars.sh; set -e
581581
cmake --build build-11 --target test_cmake_build
582582
583-
- name: Configure C++14
583+
- name: Configure C++17
584584
run: |
585585
set +e; source /opt/intel/oneapi/setvars.sh; set -e
586-
cmake -S . -B build-14 \
586+
cmake -S . -B build-17 \
587587
-DPYBIND11_WERROR=ON \
588588
-DDOWNLOAD_CATCH=ON \
589589
-DDOWNLOAD_EIGEN=OFF \
590-
-DCMAKE_CXX_STANDARD=14 \
590+
-DCMAKE_CXX_STANDARD=17 \
591591
-DCMAKE_CXX_FLAGS="-DPYBIND11_USE_SMART_HOLDER_AS_DEFAULT" \
592592
-DCMAKE_CXX_COMPILER=$(which icpc) \
593593
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
594594
595-
- name: Build C++14
595+
- name: Build C++17
596596
run: |
597597
set +e; source /opt/intel/oneapi/setvars.sh; set -e
598-
cmake --build build-14 -j 2 -v
598+
cmake --build build-17 -j 2 -v
599599
600-
- name: Python tests C++14
600+
- name: Python tests C++17
601601
run: |
602602
set +e; source /opt/intel/oneapi/setvars.sh; set -e
603603
sudo service apport stop
604-
cmake --build build-14 --target check
604+
cmake --build build-17 --target check
605605
606-
- name: C++ tests C++14
606+
- name: C++ tests C++17
607607
run: |
608608
set +e; source /opt/intel/oneapi/setvars.sh; set -e
609-
cmake --build build-14 --target cpptest
609+
cmake --build build-17 --target cpptest
610610
611-
- name: Interface test C++14
611+
- name: Interface test C++17
612612
run: |
613613
set +e; source /opt/intel/oneapi/setvars.sh; set -e
614-
cmake --build build-14 --target test_cmake_build
614+
cmake --build build-17 --target test_cmake_build
615615
616616
617617
# Testing on CentOS (manylinux uses a centos base, and this is an easy way

.github/workflows/ci_sh_def.yml.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
--- ci.yml 2021-12-29 13:23:17.380542309 -0800
2-
+++ ci_sh_def.yml 2021-12-29 13:25:04.832676256 -0800
1+
--- ci.yml 2022-01-11 17:48:37.159294931 -0800
2+
+++ ci_sh_def.yml 2022-01-11 17:51:44.916147343 -0800
33
@@ -1,4 +1,16 @@
44
-name: CI
55
+# PLEASE KEEP THIS GROUP OF FILES IN SYNC AT ALL TIMES:
@@ -105,7 +105,7 @@
105105
@@ -568,6 +588,7 @@
106106
-DDOWNLOAD_CATCH=ON \
107107
-DDOWNLOAD_EIGEN=OFF \
108-
-DCMAKE_CXX_STANDARD=14 \
108+
-DCMAKE_CXX_STANDARD=17 \
109109
+ -DCMAKE_CXX_FLAGS="-DPYBIND11_USE_SMART_HOLDER_AS_DEFAULT" \
110110
-DCMAKE_CXX_COMPILER=$(which icpc) \
111111
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")

0 commit comments

Comments
 (0)