-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ed295e8
commit 7e10e10
Showing
1 changed file
with
30 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,34 @@ | ||
trigger: | ||
- master | ||
|
||
pool: | ||
vmImage: macos-latest | ||
jobs: | ||
- job: buildTest | ||
timeoutInMinutes: 120 | ||
pool: | ||
vmImage: macos-latest | ||
|
||
steps: | ||
- checkout: self | ||
name: Checkout | ||
- task: UseNode@1 | ||
inputs: | ||
version: '16.x' | ||
- script: brew install ninja | ||
displayName: 'Setup Ninja' | ||
- script: sudo xcode-select --switch /Applications/Xcode_13.4.1.app/Contents/Developer | ||
displayName: 'Select XCode 13.4.1' | ||
- script: npm install | ||
displayName: 'NPM Install (Playground)' | ||
workingDirectory: './Apps/Playground' | ||
- script: npm run select --reactNative 0.64 | ||
displayName: 'Select React Native Version 0.64' | ||
workingDirectory: './Apps/Playground' | ||
- script: npm install | ||
displayName: 'NPM Install (Binary Package)' | ||
workingDirectory: './Package' | ||
- script: npx gulp --reactNative 0.64 --releaseVersion 1.6.6.6 | ||
displayName: 'Gulp' | ||
workingDirectory: './Package' | ||
env: | ||
JAVA_HOME: $(JAVA_HOME_11_X64) | ||
PATH: $(JAVA_HOME_11_X64)/bin:$(PATH) | ||
steps: | ||
- checkout: self | ||
name: Checkout | ||
- task: UseNode@1 | ||
inputs: | ||
version: '16.x' | ||
- script: brew install ninja | ||
displayName: 'Setup Ninja' | ||
- script: sudo xcode-select --switch /Applications/Xcode_13.4.1.app/Contents/Developer | ||
displayName: 'Select XCode 13.4.1' | ||
- script: npm install | ||
displayName: 'NPM Install (Playground)' | ||
workingDirectory: './Apps/Playground' | ||
- script: npm run select --reactNative 0.64 | ||
displayName: 'Select React Native Version 0.64' | ||
workingDirectory: './Apps/Playground' | ||
- script: npm install | ||
displayName: 'NPM Install (Binary Package)' | ||
workingDirectory: './Package' | ||
- script: npx gulp --reactNative 0.64 --releaseVersion 1.6.6.6 | ||
displayName: 'Gulp' | ||
workingDirectory: './Package' | ||
env: | ||
JAVA_HOME: $(JAVA_HOME_11_X64) | ||
PATH: $(JAVA_HOME_11_X64)/bin:$(PATH) |