From 7e3f4e7e1b14a5bdbfbb06173c54416b54cbe77b Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Fri, 29 Jan 2021 13:53:29 -0500
Subject: [PATCH] Parameterize xcode version and test a couple others

---
 .circleci/config.yml | 23 +++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 4891788..cbcc363 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -51,9 +51,11 @@ jobs:
     parameters:
       py-version:
         type: "string"
+      xcode-version:
+        type: "string"
 
     macos:
-      xcode: "12.3.0"
+      xcode: << parameters.xcode-version >>
 
     steps:
       - "checkout"
@@ -218,10 +220,15 @@ workflows:
   version: 2
   everything:
     jobs:
-      # - "documentation"
-      # - "linux-tests"
-      - "macos-tests":
-          matrix:
-            parameters:
-              py-version:
-                - "2.7"
+    # - "documentation"
+    # - "linux-tests"
+    - "macos-tests":
+        matrix:
+          parameters:
+            py-version:
+            - "2.7"
+
+            xcode-version:
+            - "12.3.0"
+            - "11.7.0"
+            - "10.3.0"
-- 
GitLab