aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalf W. Grosse-Kunstleve <rwgk@google.com>2023-06-17 07:02:23 -0700
committerGitHub <noreply@github.com>2023-06-17 07:02:23 -0700
commit849322806cd4b3697ad1d35eedd6d0352c5f267a (patch)
tree9851b3992f5ca19d92910c605c67309b7d80d7ee
parent86f60a0c072e5bd5cab79233f712c321fe8deca7 (diff)
downloadpybind11-849322806cd4b3697ad1d35eedd6d0352c5f267a.tar.gz
Systematically add `PIP_BREAK_SYSTEM_PACKAGES` to all .yml files from which pip is called. (#4705)
* Systematically add PIP_BREAK_SYSTEM_PACKAGES to all .yml files from which pip is called. * Try gcc:10-bullseye (because gcc:10 is broken: https://github.com/docker-library/gcc/issues/95) * bug fix (matrix did not work as hoped)
-rw-r--r--.github/workflows/ci.yml17
-rw-r--r--.github/workflows/configure.yml1
-rw-r--r--.github/workflows/pip.yml1
-rw-r--r--.github/workflows/upstream.yml1
4 files changed, 12 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 45a6738f..1d5d502b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -16,6 +16,7 @@ concurrency:
cancel-in-progress: true
env:
+ PIP_BREAK_SYSTEM_PACKAGES: 1
PIP_ONLY_BINARY: numpy
FORCE_COLOR: 3
PYTEST_TIMEOUT: 300
@@ -455,16 +456,16 @@ jobs:
fail-fast: false
matrix:
include:
- - { gcc: 7, std: 11 }
- - { gcc: 7, std: 17 }
- - { gcc: 8, std: 14 }
- - { gcc: 8, std: 17 }
- - { gcc: 10, std: 17 }
- - { gcc: 11, std: 20 }
- - { gcc: 12, std: 20 }
+ - { gcc: 7, std: 11, container_suffix: "" }
+ - { gcc: 7, std: 17, container_suffix: "" }
+ - { gcc: 8, std: 14, container_suffix: "" }
+ - { gcc: 8, std: 17, container_suffix: "" }
+ - { gcc: 10, std: 17, container_suffix: "-bullseye" }
+ - { gcc: 11, std: 20, container_suffix: "" }
+ - { gcc: 12, std: 20, container_suffix: "" }
name: "🐍 3 • GCC ${{ matrix.gcc }} • C++${{ matrix.std }}• x64"
- container: "gcc:${{ matrix.gcc }}"
+ container: "gcc:${{ matrix.gcc }}${{ matrix.container_suffix }}"
steps:
- uses: actions/checkout@v3
diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml
index 4ae22281..82a49390 100644
--- a/.github/workflows/configure.yml
+++ b/.github/workflows/configure.yml
@@ -13,6 +13,7 @@ permissions:
contents: read
env:
+ PIP_BREAK_SYSTEM_PACKAGES: 1
# For cmake:
VERBOSE: 1
diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml
index c1feb6fe..04d95a28 100644
--- a/.github/workflows/pip.yml
+++ b/.github/workflows/pip.yml
@@ -16,6 +16,7 @@ permissions:
contents: read
env:
+ PIP_BREAK_SYSTEM_PACKAGES: 1
PIP_ONLY_BINARY: numpy
jobs:
diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml
index d4220be2..dd8a1c96 100644
--- a/.github/workflows/upstream.yml
+++ b/.github/workflows/upstream.yml
@@ -12,6 +12,7 @@ concurrency:
cancel-in-progress: true
env:
+ PIP_BREAK_SYSTEM_PACKAGES: 1
PIP_ONLY_BINARY: ":all:"
# For cmake:
VERBOSE: 1