소스 검색

Feature/build pipeline (#21)

* Update azure-pipelines.yml for Azure Pipelines
flutter-beta
juliuscanute 7 년 전
committed by GitHub
부모
커밋
63a53b51d6
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일12개의 추가작업 그리고 7개의 파일을 삭제
  1. +12
    -7
      azure-pipelines.yml

+ 12
- 7
azure-pipelines.yml 파일 보기

@@ -7,13 +7,18 @@ trigger:
- master

pool:
vmImage: 'ubuntu-latest'
name: 'Default'

steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'

- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'
cd example
$(flutterPath)/flutter build ios
displayName: 'Test iOS -- Build'
env:
flutterPath: $(flutterPath)
- script: |
cd example
$(flutterPath)/flutter build apk --target-platform android-arm,android-arm64 --split-per-abi
displayName: 'Test Android -- Build'
env:
flutterPath: $(flutterPath)

불러오는 중...
취소
저장