This is an automated email from the ASF dual-hosted git repository.

erisu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cordova-paramedic.git


The following commit(s) were added to refs/heads/master by this push:
     new 1533aa6  breaking: use latest platform & development tools (#200)
1533aa6 is described below

commit 1533aa63b4430b946a05b917aa8cc9862b22fe70
Author: エリス <[email protected]>
AuthorDate: Thu Aug 27 01:26:35 2020 +0900

    breaking: use latest platform & development tools (#200)
    
    * chore: use latest platforms for testing
    * breaking: bump xcode requirement to 11.5
    * chore: use iPhone-11 instead of XR
---
 .travis.yml                                | 2 +-
 conf/pr/browser-chrome.config.json         | 2 +-
 conf/pr/browser-edge.config.json           | 2 +-
 conf/pr/browser-firefox.config.json        | 2 +-
 conf/pr/browser-safari.config.json         | 2 +-
 conf/pr/ios-11.3.config.json               | 2 +-
 conf/pr/ios-12.0.config.json               | 2 +-
 conf/pr/ios-12.2.config.json               | 2 +-
 conf/pr/local/browser.config.json          | 2 +-
 conf/pr/local/ios-10.0.config.json         | 4 ++--
 conf/pr/local/ios-9.3.config.json          | 2 +-
 conf/pr/local/windows-10-store.config.json | 2 +-
 conf/pr/windows-10-store.config.json       | 2 +-
 sample-config/.paramedic.config.js         | 2 +-
 14 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 5fd688f..bb9dd71 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -34,7 +34,7 @@ node_js: 12
 
 _ios: &_ios
   os: osx
-  osx_image: xcode10.3
+  osx_image: xcode11.5
 
 _android: &_android
   language: android
diff --git a/conf/pr/browser-chrome.config.json 
b/conf/pr/browser-chrome.config.json
index a6dafc2..51d8539 100644
--- a/conf/pr/browser-chrome.config.json
+++ b/conf/pr/browser-chrome.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "browser",
+    "platform": "browser@latest",
     "action": "run",
     "cleanUpAfterRun": true,
     "shouldUseSauce": true,
diff --git a/conf/pr/browser-edge.config.json b/conf/pr/browser-edge.config.json
index 482c109..7f9284b 100644
--- a/conf/pr/browser-edge.config.json
+++ b/conf/pr/browser-edge.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "browser",
+    "platform": "browser@latest",
     "action": "run",
     "cleanUpAfterRun": true,
     "shouldUseSauce": true,
diff --git a/conf/pr/browser-firefox.config.json 
b/conf/pr/browser-firefox.config.json
index 7c9e101..5d75458 100644
--- a/conf/pr/browser-firefox.config.json
+++ b/conf/pr/browser-firefox.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "browser",
+    "platform": "browser@latest",
     "action": "run",
     "cleanUpAfterRun": true,
     "shouldUseSauce": true,
diff --git a/conf/pr/browser-safari.config.json 
b/conf/pr/browser-safari.config.json
index f00509d..1aacf7d 100644
--- a/conf/pr/browser-safari.config.json
+++ b/conf/pr/browser-safari.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "browser",
+    "platform": "browser@latest",
     "action": "run",
     "cleanUpAfterRun": true,
     "shouldUseSauce": true,
diff --git a/conf/pr/ios-11.3.config.json b/conf/pr/ios-11.3.config.json
index 135e02a..b9a1a7e 100644
--- a/conf/pr/ios-11.3.config.json
+++ b/conf/pr/ios-11.3.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "ios",
+    "platform": "ios@latest",
     "action": "run",
     "cleanUpAfterRun": true,
     "shouldUseSauce": true,
diff --git a/conf/pr/ios-12.0.config.json b/conf/pr/ios-12.0.config.json
index 64332e4..7362b58 100644
--- a/conf/pr/ios-12.0.config.json
+++ b/conf/pr/ios-12.0.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "ios",
+    "platform": "ios@latest",
     "action": "run",
     "cleanUpAfterRun": true,
     "shouldUseSauce": true,
diff --git a/conf/pr/ios-12.2.config.json b/conf/pr/ios-12.2.config.json
index 7a13565..7faa03f 100644
--- a/conf/pr/ios-12.2.config.json
+++ b/conf/pr/ios-12.2.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "ios",
+    "platform": "ios@latest",
     "action": "run",
     "cleanUpAfterRun": true,
     "shouldUseSauce": true,
diff --git a/conf/pr/local/browser.config.json 
b/conf/pr/local/browser.config.json
index 211df49..4fb2be6 100644
--- a/conf/pr/local/browser.config.json
+++ b/conf/pr/local/browser.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "browser",
+    "platform": "browser@latest",
     "action": "run",
     "cleanUpAfterRun": true,
     "verbose": true
diff --git a/conf/pr/local/ios-10.0.config.json 
b/conf/pr/local/ios-10.0.config.json
index ab0bcac..adcc391 100644
--- a/conf/pr/local/ios-10.0.config.json
+++ b/conf/pr/local/ios-10.0.config.json
@@ -1,7 +1,7 @@
 {
-    "platform": "ios",
+    "platform": "ios@latest",
     "action": "run",
     "cleanUpAfterRun": true,
-    "target": "iPhone-XR",
+    "target": "iPhone-11",
     "verbose": true
 }
diff --git a/conf/pr/local/ios-9.3.config.json 
b/conf/pr/local/ios-9.3.config.json
index 693bda0..a70221e 100644
--- a/conf/pr/local/ios-9.3.config.json
+++ b/conf/pr/local/ios-9.3.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "[email protected]",
+    "platform": "ios@latest",
     "args": "--buildFlag='-UseModernBuildSystem=0'",
     "action": "run",
     "cleanUpAfterRun": true,
diff --git a/conf/pr/local/windows-10-store.config.json 
b/conf/pr/local/windows-10-store.config.json
index 221ef75..60e2031 100644
--- a/conf/pr/local/windows-10-store.config.json
+++ b/conf/pr/local/windows-10-store.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "windows",
+    "platform": "windows@latest",
     "action": "run",
     "args": " -- --appx=uap --archs=x64",
     "cleanUpAfterRun": true,
diff --git a/conf/pr/windows-10-store.config.json 
b/conf/pr/windows-10-store.config.json
index 118a06a..645b707 100644
--- a/conf/pr/windows-10-store.config.json
+++ b/conf/pr/windows-10-store.config.json
@@ -1,5 +1,5 @@
 {
-    "platform": "windows",
+    "platform": "windows@latest",
     "action": "run",
     "args": " -- --appx=uap --archs=x64",
     "cleanUpAfterRun": true,
diff --git a/sample-config/.paramedic.config.js 
b/sample-config/.paramedic.config.js
index 6d1bab5..e0a1ea5 100644
--- a/sample-config/.paramedic.config.js
+++ b/sample-config/.paramedic.config.js
@@ -24,7 +24,7 @@ module.exports = {
     "plugins": [
         "https://github.com/apache/cordova-plugin-inappbrowser";
     ],
-     "platform": "windows",
+     "platform": "windows@latest",
      "action": "run",
      "args": "--archs=x64 -- --appx=uap"
 };


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to