Skip to content

Commit

Permalink
timeout for Azure Pipelines test
Browse files Browse the repository at this point in the history
  • Loading branch information
CedricGuillemet committed Oct 9, 2023
1 parent ed295e8 commit 7e10e10
Showing 1 changed file with 30 additions and 27 deletions.
57 changes: 30 additions & 27 deletions azure-pipelines.yml
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)

0 comments on commit 7e10e10

Please sign in to comment.