fix(ci): CircleCI / Azure Pipelines / GitLab (#1899)

* fix(ci): CircleCI

CircleCI does not support Intel macOS runners anymore.
c.f. https://discuss.circleci.com/t/macos-intel-support-deprecation-in-january-2024/48718

* fix(ci): Azure Pipelines

* fix(ci): GitLab
This commit is contained in:
Matthieu Darbois
2024-06-29 14:12:13 -04:00
committed by GitHub
parent 08165ffeed
commit 184d4e1280
8 changed files with 30 additions and 25 deletions
+7 -6
View File
@@ -1,9 +1,10 @@
version: 2
jobs:
osx-python3.9:
osx-python3.12:
macos:
xcode: 12.5.1
xcode: 15.4.0
resource_class: macos.m1.medium.gen1
environment:
PYTHON: python3
steps:
@@ -17,9 +18,9 @@ jobs:
command: venv/bin/python ./bin/run_tests.py
no_output_timeout: 30m
linux-python3.9:
linux-python3.12:
docker:
- image: circleci/python:3.9
- image: cimg/python:3.12
environment:
PYTHON: python3
# Temporarily restrict the tests that are run on CircleCI to prevent
@@ -61,6 +62,6 @@ workflows:
version: 2
all-tests:
jobs:
- osx-python3.9
- linux-python3.9
- osx-python3.12
- linux-python3.12
- linux-aarch64
+5 -3
View File
@@ -2,10 +2,12 @@
set -o errexit
set -o xtrace
if [ "$(uname -s)" == "Darwin" ]; then
sudo softwareupdate --install-rosetta --agree-to-license
fi
$PYTHON --version
$PYTHON -m pip --version
$PYTHON -m virtualenv --version
$PYTHON -m virtualenv --no-setuptools --no-wheel -p "$PYTHON" venv
$PYTHON -m venv venv
venv/bin/python -m pip install -U pip
venv/bin/python -m pip install -e ".[dev]"
venv/bin/python -m pip freeze