From c89b74604d23b68b98288e64347b1487160f76b5 Mon Sep 17 00:00:00 2001 From: jbarlow83 Date: Thu, 8 Oct 2020 01:35:22 -0700 Subject: [PATCH 1/4] README: Mention which CIs support ARM builds --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 109f8af3..be5012ff 100644 --- a/README.md +++ b/README.md @@ -40,14 +40,16 @@ Usage `cibuildwheel` currently works on **Travis CI**, **Azure Pipelines**, **AppVeyor**, **GitHub Actions**, **CircleCI**, and **Gitlab CI**. Check the table below for supported platforms on each service: -| | Linux | macOS | Windows | -|-----------------|-------|-------|---------| -| Azure Pipelines | ✅ | ✅ | ✅ | -| Travis CI | ✅ | ✅ | ✅ | -| AppVeyor | ✅ | ✅ | ✅ | -| GitHub Actions | ✅ | ✅ | ✅ | -| CircleCI | ✅ | ✅ | | -| Gitlab CI | ✅ | | | +| | Linux | macOS | Windows | Supports ARM | +|-----------------|-------|-------|---------|--------------| +| Azure Pipelines | ✅ | ✅ | ✅ | ✴️¹ | +| Travis CI | ✅ | ✅ | ✅ | ✅ | +| AppVeyor | ✅ | ✅ | ✅ | | +| GitHub Actions | ✅ | ✅ | ✅ | | +| CircleCI | ✅ | ✅ | | | +| Gitlab CI | ✅ | | | | + +¹ Supported with a "third-party build host".
`cibuildwheel` is not intended to run on your development machine. Because it uses system Python from Python.org it will try to install packages globally - not what you expect from a build tool! Instead, isolated CI services like those mentioned above are ideal. From b8a41130c33bca7909f9a3cb6da149a7e288eb54 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 19 Nov 2020 10:22:55 -0500 Subject: [PATCH 2/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index be5012ff..b2e6cde9 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ Usage `cibuildwheel` currently works on **Travis CI**, **Azure Pipelines**, **AppVeyor**, **GitHub Actions**, **CircleCI**, and **Gitlab CI**. Check the table below for supported platforms on each service: -| | Linux | macOS | Windows | Supports ARM | +| | Linux | macOS | Windows | Linux ARM | |-----------------|-------|-------|---------|--------------| | Azure Pipelines | ✅ | ✅ | ✅ | ✴️¹ | | Travis CI | ✅ | ✅ | ✅ | ✅ | From a50be4d8207bddc5ae142c294faf2ce36f41a327 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 19 Nov 2020 10:23:37 -0500 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b2e6cde9..a3ff30d5 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Usage | Azure Pipelines | ✅ | ✅ | ✅ | ✴️¹ | | Travis CI | ✅ | ✅ | ✅ | ✅ | | AppVeyor | ✅ | ✅ | ✅ | | -| GitHub Actions | ✅ | ✅ | ✅ | | +| GitHub Actions | ✅ | ✅ | ✅ | ✴️¹ | | CircleCI | ✅ | ✅ | | | | Gitlab CI | ✅ | | | | From 10c244d827787e1aa2635791fa6e08ae1cca582d Mon Sep 17 00:00:00 2001 From: jbarlow83 Date: Mon, 23 Nov 2020 16:42:58 -0800 Subject: [PATCH 4/4] Update README.md Co-authored-by: Henry Schreiner --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3ff30d5..c71b2788 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ Usage | CircleCI | ✅ | ✅ | | | | Gitlab CI | ✅ | | | | -¹ Supported with a "third-party build host".
+¹ Requires a "third-party build host"; expected to work with cibuildwheel but not directly tested by our CI.
`cibuildwheel` is not intended to run on your development machine. Because it uses system Python from Python.org it will try to install packages globally - not what you expect from a build tool! Instead, isolated CI services like those mentioned above are ideal.