Skip to content

Commit 037e699

Browse files
committed
manylinux2014_x86_64:2021-07-03-d4d5413
"error: linker cc not found" on newer.
1 parent f8c0112 commit 037e699

File tree

2 files changed

+60
-4
lines changed

2 files changed

+60
-4
lines changed

ci/azure-pipelines.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,62 @@ jobs:
106106
- checkout: self
107107
- template: ./azure-linux-container.yml
108108

109+
- job: linux_python39_amd64_manylinux2014
110+
pool:
111+
vmImage: ubuntu-20.04
112+
container: quay.io/pypa/manylinux2014_x86_64:2021-07-03-d4d5413
113+
variables:
114+
interpreter: python3.9
115+
manylinux: 2014
116+
path: /home/vsts_azpcontainer/.local/bin:/home/vsts_azpcontainer/.cargo/bin:/opt/python/cp39-cp39/bin:/opt/rh/devtoolset-9/root/usr/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
117+
target: x86_64-unknown-linux-gnu
118+
verifyManylinux: true
119+
steps:
120+
- checkout: self
121+
- template: ./azure-linux-container.yml
122+
123+
- job: linux_python38_amd64_manylinux2014
124+
pool:
125+
vmImage: ubuntu-20.04
126+
container: quay.io/pypa/manylinux2014_x86_64:2021-07-03-d4d5413
127+
variables:
128+
interpreter: python3.8
129+
manylinux: 2014
130+
path: /home/vsts_azpcontainer/.local/bin:/home/vsts_azpcontainer/.cargo/bin:/opt/python/cp38-cp38/bin:/opt/rh/devtoolset-9/root/usr/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
131+
target: x86_64-unknown-linux-gnu
132+
verifyManylinux: true
133+
steps:
134+
- checkout: self
135+
- template: ./azure-linux-container.yml
136+
137+
- job: linux_python37_amd64_manylinux2014
138+
pool:
139+
vmImage: ubuntu-20.04
140+
container: quay.io/pypa/manylinux2014_x86_64:2021-07-03-d4d5413
141+
variables:
142+
interpreter: python3.7
143+
manylinux: 2014
144+
path: /home/vsts_azpcontainer/.local/bin:/home/vsts_azpcontainer/.cargo/bin:/opt/python/cp37-cp37m/bin:/opt/rh/devtoolset-9/root/usr/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
145+
target: x86_64-unknown-linux-gnu
146+
verifyManylinux: true
147+
steps:
148+
- checkout: self
149+
- template: ./azure-linux-container.yml
150+
151+
- job: linux_python36_amd64_manylinux2014
152+
pool:
153+
vmImage: ubuntu-20.04
154+
container: quay.io/pypa/manylinux2014_x86_64:2021-07-03-d4d5413
155+
variables:
156+
interpreter: python3.6
157+
manylinux: 2014
158+
path: /home/vsts_azpcontainer/.local/bin:/home/vsts_azpcontainer/.cargo/bin:/opt/python/cp36-cp36m/bin:/opt/rh/devtoolset-9/root/usr/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
159+
target: x86_64-unknown-linux-gnu
160+
verifyManylinux: true
161+
steps:
162+
- checkout: self
163+
- template: ./azure-linux-container.yml
164+
109165
- job: macos_python39_amd64
110166
pool:
111167
vmImage: macOS-10.15

ci/drone.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ steps:
4040
commands:
4141
- curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2021-08-04 --profile minimal -y
4242
- python3.9 -m pip install --user --upgrade pip maturin==0.11.2
43-
- maturin build --no-sdist --release --strip --manylinux 2014 --interpreter python3.9
43+
- maturin build --no-sdist --release --strip --manylinux 2_24 --interpreter python3.9
4444
- python3.9 -m pip install --user target/wheels/orjson*.whl
4545
- python3.9 -m pip install --user -r test/requirements.txt -r integration/requirements.txt
4646
- pytest -s -rxX -v test
@@ -64,7 +64,7 @@ steps:
6464
commands:
6565
- curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2021-08-04 --profile minimal -y
6666
- python3.8 -m pip install --user --upgrade pip maturin==0.11.2
67-
- maturin build --no-sdist --release --strip --manylinux 2014 --interpreter python3.8
67+
- maturin build --no-sdist --release --strip --manylinux 2_24 --interpreter python3.8
6868
- python3.8 -m pip install --user target/wheels/orjson*.whl
6969
- python3.8 -m pip install --user -r test/requirements.txt -r integration/requirements.txt
7070
- pytest -s -rxX -v test
@@ -88,7 +88,7 @@ steps:
8888
commands:
8989
- curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2021-08-04 --profile minimal -y
9090
- python3.7 -m pip install --user --upgrade pip maturin==0.11.2
91-
- maturin build --no-sdist --release --strip --manylinux 2014 --interpreter python3.7
91+
- maturin build --no-sdist --release --strip --manylinux 2_24 --interpreter python3.7
9292
- python3.7 -m pip install --user target/wheels/orjson*.whl
9393
- python3.7 -m pip install --user -r test/requirements.txt -r integration/requirements.txt
9494
- pytest -s -rxX -v test
@@ -112,7 +112,7 @@ steps:
112112
commands:
113113
- curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain nightly-2021-08-04 --profile minimal -y
114114
- python3.6 -m pip install --user --upgrade pip maturin==0.11.2
115-
- maturin build --no-sdist --release --strip --manylinux 2014 --interpreter python3.6
115+
- maturin build --no-sdist --release --strip --manylinux 2_24 --interpreter python3.6
116116
- python3.6 -m pip install --user target/wheels/orjson*.whl
117117
- python3.6 -m pip install --user -r test/requirements.txt -r integration/requirements.txt
118118
- pytest -s -rxX -v test

0 commit comments

Comments
 (0)