Skip to content

Commit 8a57f52

Browse files
committed
Fix build scripts
1 parent bce6828 commit 8a57f52

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.cirrus.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ release_task:
3737
PYTHON38: python3.8
3838
freebsd_instance:
3939
matrix:
40-
- image_family: freebsd-12-1-snap
40+
- image_family: freebsd-12-2
4141
- image_family: freebsd-13-0-snap
4242
- image_family: freebsd-11-4-snap
4343
python_script: pkg install -y curl bash jq python3 python27 python36 python37 python38

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ jobs:
5353
poetry install --no-dev
5454
- name: Preparing Python executables
5555
run: |
56-
curl -L https://github.com/sdispater/python-binaries/releases/download/2.7.17/python-2.7.17.macos.tar.xz -o python-2.7.17.tar.xz
56+
curl -L https://github.com/sdispater/python-binaries/releases/download/2.7.18/python-2.7.18.macos.tar.xz -o python-2.7.18.tar.xz
5757
curl -L https://github.com/sdispater/python-binaries/releases/download/3.5.9/python-3.5.9.macos.tar.xz -o python-3.5.9.tar.xz
5858
curl -L https://github.com/sdispater/python-binaries/releases/download/3.6.8/python-3.6.8.macos.tar.xz -o python-3.6.8.tar.xz
5959
curl -L https://github.com/sdispater/python-binaries/releases/download/3.7.6/python-3.7.6.macos.tar.xz -o python-3.7.6.tar.xz
6060
curl -L https://github.com/sdispater/python-binaries/releases/download/3.8.3/python-3.8.3.macos.tar.xz -o python-3.8.3.tar.xz
6161
curl -L https://github.com/sdispater/python-binaries/releases/download/3.9.0b4/python-3.9.0b4.macos.tar.xz -o python-3.9.0b4.tar.xz
62-
tar -zxf python-2.7.17.tar.xz
62+
tar -zxf python-2.7.18.tar.xz
6363
tar -zxf python-3.5.9.tar.xz
6464
tar -zxf python-3.6.8.tar.xz
6565
tar -zxf python-3.7.6.tar.xz
@@ -68,7 +68,7 @@ jobs:
6868
- name: Build specific release
6969
run: |
7070
source $HOME/.poetry/env
71-
poetry run python sonnet make release --ansi -P "2.7:python-2.7.17/bin/python" -P "3.5:python-3.5.9/bin/python" -P "3.6:python-3.6.8/bin/python" -P "3.7:python-3.7.6/bin/python" -P "3.8:python-3.8.3/bin/python" -P "3.9:python-3.9.0b4/bin/python"
71+
poetry run python sonnet make release --ansi -P "2.7:python-2.7.18/bin/python" -P "3.5:python-3.5.9/bin/python" -P "3.6:python-3.6.8/bin/python" -P "3.7:python-3.7.6/bin/python" -P "3.8:python-3.8.3/bin/python" -P "3.9:python-3.9.0b4/bin/python"
7272
- name: Upload release file
7373
uses: actions/upload-artifact@v1
7474
with:

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ wheel:
4747
@poetry build -v
4848

4949
linux_release:
50-
docker pull quay.io/pypa/manylinux2010_x86_64
50+
docker pull quay.io/pypa/manylinux2010_x86_64:2021-02-06-3d322a5
5151
docker run --rm -i -v `pwd`:/io \
5252
-e PYTHON=/opt/python/cp38-cp38/bin/python \
5353
-e PYTHON27=/opt/python/cp27-cp27m/bin/python \
@@ -56,7 +56,7 @@ linux_release:
5656
-e PYTHON37=/opt/python/cp37-cp37m/bin/python \
5757
-e PYTHON38=/opt/python/cp38-cp38/bin/python \
5858
-e PYTHON39=/opt/python/cp39-cp39/bin/python \
59-
quay.io/pypa/manylinux2010_x86_64 sh -c "cd /io && ./make-nix-release.sh"
59+
quay.io/pypa/manylinux2010_x86_64:2021-02-06-3d322a5 sh -c "cd /io && ./make-nix-release.sh"
6060

6161
# run tests against all supported python versions
6262
tox:

0 commit comments

Comments
 (0)