Disabling valgrind for now. (#3068)

This commit is contained in:
Ralf W. Grosse-Kunstleve 2021-06-30 23:37:50 -07:00 committed by GitHub
parent 47f9b1c849
commit ba3f167a52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 15 deletions

View File

@ -175,9 +175,10 @@ jobs:
fail-fast: false
matrix:
include:
# valgrind started failing for the final version of PR #3023 (same gcc, python, valgrind as before).
- python-version: 3.9
python-debug: true
valgrind: true
valgrind: false
- python-version: 3.10-dev
python-debug: false

View File

@ -189,9 +189,10 @@ jobs:
fail-fast: false
matrix:
include:
# valgrind started failing for the final version of PR #3023 (same gcc, python, valgrind as before).
- python-version: 3.9
python-debug: true
valgrind: true
valgrind: false
- python-version: 3.10-dev
python-debug: false

View File

@ -1,5 +1,5 @@
--- ci.yml 2021-06-24 12:00:18.912375553 -0700
+++ ci_sh_def.yml 2021-06-24 12:01:31.101283417 -0700
--- ci.yml 2021-06-30 17:20:07.213156515 -0700
+++ ci_sh_def.yml 2021-06-30 17:22:01.585076084 -0700
@@ -1,4 +1,16 @@
-name: CI-SH-AVL
+# PLEASE KEEP THIS GROUP OF FILES IN SYNC AT ALL TIMES:
@ -34,7 +34,7 @@
${{ matrix.args }}
${{ matrix.args2 }}
@@ -287,6 +301,7 @@
@@ -288,6 +302,7 @@
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=ON
-DCMAKE_CXX_STANDARD=${{ matrix.std }}
@ -42,7 +42,7 @@
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
- name: Build
@@ -316,7 +331,8 @@
@@ -317,7 +332,8 @@
run: apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get install -y cmake git python3-dev python3-pytest python3-numpy
- name: Configure
@ -52,7 +52,7 @@
- name: Build
run: cmake --build build -j2 --verbose
@@ -396,7 +412,7 @@
@@ -397,7 +413,7 @@
cmake3 -S . -B build -DDOWNLOAD_CATCH=ON \
-DCMAKE_CXX_STANDARD=11 \
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)") \
@ -61,7 +61,7 @@
-DPYBIND11_TEST_FILTER="test_smart_ptr.cpp;test_virtual_functions.cpp"
# Building before installing Pip should produce a warning but not an error
@@ -455,6 +471,7 @@
@@ -456,6 +472,7 @@
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=ON
-DCMAKE_CXX_STANDARD=${{ matrix.std }}
@ -69,7 +69,7 @@
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
- name: Build
@@ -510,6 +527,7 @@
@@ -511,6 +528,7 @@
-DDOWNLOAD_CATCH=ON \
-DDOWNLOAD_EIGEN=OFF \
-DCMAKE_CXX_STANDARD=11 \
@ -77,7 +77,7 @@
-DCMAKE_CXX_COMPILER=$(which icpc) \
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
@@ -542,6 +560,7 @@
@@ -543,6 +561,7 @@
-DDOWNLOAD_CATCH=ON \
-DDOWNLOAD_EIGEN=OFF \
-DCMAKE_CXX_STANDARD=17 \
@ -85,7 +85,7 @@
-DCMAKE_CXX_COMPILER=$(which icpc) \
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
@@ -612,6 +631,7 @@
@@ -613,6 +632,7 @@
-DDOWNLOAD_CATCH=ON
-DDOWNLOAD_EIGEN=ON
-DCMAKE_CXX_STANDARD=11
@ -93,7 +93,7 @@
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
- name: Build
@@ -662,6 +682,7 @@
@@ -663,6 +683,7 @@
cmake ../pybind11-tests
-DDOWNLOAD_CATCH=ON
-DPYBIND11_WERROR=ON
@ -101,7 +101,7 @@
-DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
working-directory: /build-tests
@@ -757,6 +778,7 @@
@@ -758,6 +779,7 @@
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=OFF
-DDOWNLOAD_EIGEN=ON
@ -109,7 +109,7 @@
${{ matrix.args }}
- name: Build C++11
run: cmake --build build -j 2
@@ -803,6 +825,7 @@
@@ -804,6 +826,7 @@
-DPYBIND11_WERROR=ON
-DDOWNLOAD_CATCH=OFF
-DDOWNLOAD_EIGEN=ON
@ -117,7 +117,7 @@
- name: Build C++14
run: cmake --build build -j 2
@@ -823,12 +846,13 @@
@@ -824,12 +847,13 @@
- 3.7
std:
- 14