* [2.x] Update virtualenv URLs to avoid blob URLs It looks like many people are hitting the HTTP 429 for old versions of cibuildwheel. These hosted versions of virtualenv should work, let's see... * Write the correct version strings * ci: some updates based on main branch Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * ci: move to using latest images Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * chore: fix up style checks Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * ci: newer azure images too Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * tests: use new SSL test from main Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> * Drop `build`'s installation from Pyodide build tools --------- Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com> Co-authored-by: Agriya Khetarpal <74401230+agriyakhetarpal@users.noreply.github.com>
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
linux:
|
|
image: python:3.12
|
|
# make a docker daemon available for cibuildwheel to use
|
|
services:
|
|
- name: docker:dind
|
|
entrypoint: ["env", "-u", "DOCKER_HOST"]
|
|
command: ["dockerd-entrypoint.sh"]
|
|
variables:
|
|
DOCKER_HOST: tcp://docker:2375/
|
|
DOCKER_DRIVER: overlay2
|
|
# See https://github.com/docker-library/docker/pull/166
|
|
DOCKER_TLS_CERTDIR: ""
|
|
script:
|
|
- curl -sSL https://get.docker.com/ | sh
|
|
- python -m pip install cibuildwheel==2.23.3
|
|
- cibuildwheel --output-dir wheelhouse
|
|
artifacts:
|
|
paths:
|
|
- wheelhouse/
|
|
|
|
windows:
|
|
image: mcr.microsoft.com/windows/servercore:1809
|
|
before_script:
|
|
- choco install python -y --version 3.12.4
|
|
- choco install git.install -y
|
|
- py -m pip install cibuildwheel==2.23.3
|
|
script:
|
|
- py -m cibuildwheel --output-dir wheelhouse --platform windows
|
|
artifacts:
|
|
paths:
|
|
- wheelhouse/
|
|
tags:
|
|
- saas-windows-medium-amd64
|
|
|
|
macos:
|
|
image: macos-latest-xcode-15
|
|
before_script:
|
|
- python3 -m pip install cibuildwheel==2.23.3
|
|
script:
|
|
- python3 -m cibuildwheel --output-dir wheelhouse
|
|
artifacts:
|
|
paths:
|
|
- wheelhouse/
|
|
tags:
|
|
- saas-macos-medium-m1
|