瀏覽代碼

[Azure Pipelines] Add Xcode 10.2 job

Norio Nomura 6 年之前
父節點
當前提交
20fcc9b295
共有 1 個文件被更改,包括 5 次插入1 次删除
  1. 5 1
      azure-pipelines.yml

+ 5 - 1
azure-pipelines.yml

@@ -3,7 +3,7 @@ trigger:
 jobs:
 - job: macOS
   pool:
-    vmImage: 'macOS-10.13'
+    vmImage: $[ coalesce(variables['VM_IMAGE'], 'macOS-10.13') ] 
   strategy:
     maxParallel: 10
     matrix:
@@ -23,6 +23,10 @@ jobs:
       Xcode 10.1:
         DEVELOPER_DIR: '/Applications/Xcode_10.1.app'
         XCODE_FLAGS_FOR_TEST: -parallel-testing-enabled NO
+      Xcode 10.2:
+        DEVELOPER_DIR: '/Applications/Xcode_10.2.app'
+        VM_IMAGE: 'macOS-10.14'
+        XCODE_FLAGS_FOR_TEST: -parallel-testing-enabled NO
   steps:
     - script: |
         xcodebuild -version