[Azure Pipelines] Add Xcode 11 job (#201)
* [Azure Pipelines] Add Xcode 11 job The document said that is Xcode 11 beta 2 (11M337n).8422f39c96
* Workaround to https://github.com/CocoaPods/fourflusher/issues/24 * Revert "Workaround to https://github.com/CocoaPods/fourflusher/issues/24" This reverts commitc4a043b293
. * `bundle update`
This commit is contained in:
parent
0e210c0ef3
commit
032316d7c2
30
Gemfile.lock
30
Gemfile.lock
|
@ -9,10 +9,10 @@ GEM
|
|||
tzinfo (~> 1.1)
|
||||
atomos (0.1.3)
|
||||
claide (1.0.2)
|
||||
cocoapods (1.7.0)
|
||||
cocoapods (1.7.4)
|
||||
activesupport (>= 4.0.2, < 5)
|
||||
claide (>= 1.0.2, < 2.0)
|
||||
cocoapods-core (= 1.7.0)
|
||||
cocoapods-core (= 1.7.4)
|
||||
cocoapods-deintegrate (>= 1.0.3, < 2.0)
|
||||
cocoapods-downloader (>= 1.2.2, < 2.0)
|
||||
cocoapods-plugins (>= 1.0.0, < 2.0)
|
||||
|
@ -22,13 +22,13 @@ GEM
|
|||
cocoapods-try (>= 1.1.0, < 2.0)
|
||||
colored2 (~> 3.1)
|
||||
escape (~> 0.0.4)
|
||||
fourflusher (>= 2.2.0, < 3.0)
|
||||
fourflusher (>= 2.3.0, < 3.0)
|
||||
gh_inspector (~> 1.0)
|
||||
molinillo (~> 0.6.6)
|
||||
nap (~> 1.0)
|
||||
ruby-macho (~> 1.4)
|
||||
xcodeproj (>= 1.8.2, < 2.0)
|
||||
cocoapods-core (1.7.0)
|
||||
xcodeproj (>= 1.10.0, < 2.0)
|
||||
cocoapods-core (1.7.4)
|
||||
activesupport (>= 4.0.2, < 6)
|
||||
fuzzy_match (~> 2.0.4)
|
||||
nap (~> 1.0)
|
||||
|
@ -46,24 +46,24 @@ GEM
|
|||
concurrent-ruby (1.1.5)
|
||||
escape (0.0.4)
|
||||
ffi (1.11.1)
|
||||
fourflusher (2.2.0)
|
||||
fourflusher (2.3.1)
|
||||
fuzzy_match (2.0.4)
|
||||
gh_inspector (1.1.3)
|
||||
i18n (0.9.5)
|
||||
concurrent-ruby (~> 1.0)
|
||||
jazzy (0.9.4)
|
||||
cocoapods (~> 1.0)
|
||||
mustache (~> 0.99)
|
||||
jazzy (0.10.0)
|
||||
cocoapods (~> 1.5)
|
||||
mustache (~> 1.1)
|
||||
open4
|
||||
redcarpet (~> 3.2)
|
||||
redcarpet (~> 3.4)
|
||||
rouge (>= 2.0.6, < 4.0)
|
||||
sass (~> 3.4)
|
||||
sass (~> 3.6)
|
||||
sqlite3 (~> 1.3)
|
||||
xcinvoke (~> 0.3.0)
|
||||
liferaft (0.0.6)
|
||||
minitest (5.11.3)
|
||||
molinillo (0.6.6)
|
||||
mustache (0.99.8)
|
||||
mustache (1.1.0)
|
||||
nanaimo (0.2.6)
|
||||
nap (1.1.0)
|
||||
netrc (0.11.0)
|
||||
|
@ -72,7 +72,7 @@ GEM
|
|||
rb-inotify (0.10.0)
|
||||
ffi (~> 1.0)
|
||||
redcarpet (3.4.0)
|
||||
rouge (3.3.0)
|
||||
rouge (3.6.0)
|
||||
ruby-macho (1.4.0)
|
||||
sass (3.7.4)
|
||||
sass-listen (~> 4.0.0)
|
||||
|
@ -85,7 +85,7 @@ GEM
|
|||
thread_safe (~> 0.1)
|
||||
xcinvoke (0.3.0)
|
||||
liferaft (~> 0.0.6)
|
||||
xcodeproj (1.9.0)
|
||||
xcodeproj (1.11.0)
|
||||
CFPropertyList (>= 2.3.3, < 4.0)
|
||||
atomos (~> 0.1.3)
|
||||
claide (>= 1.0.2, < 2.0)
|
||||
|
@ -100,4 +100,4 @@ DEPENDENCIES
|
|||
jazzy
|
||||
|
||||
BUNDLED WITH
|
||||
2.0.1
|
||||
2.0.2
|
||||
|
|
|
@ -68,6 +68,11 @@ jobs:
|
|||
VM_IMAGE: 'macOS 10.14'
|
||||
XCODE_FLAGS_FOR_TEST: -parallel-testing-enabled NO
|
||||
SKIP_32_BIT_TESTS: true
|
||||
xcode11:
|
||||
DEVELOPER_DIR: /Applications/Xcode_11.app
|
||||
VM_IMAGE: 'macOS 10.14'
|
||||
XCODE_FLAGS_FOR_TEST: -parallel-testing-enabled NO
|
||||
SKIP_32_BIT_TESTS: true
|
||||
steps:
|
||||
- script: |
|
||||
xcodebuild -version
|
||||
|
|
Loading…
Reference in New Issue