浏览代码

Feature/build pipeline (#21)

* Update azure-pipelines.yml for Azure Pipelines
flutter-beta
juliuscanute 7 年前
committed by GitHub
父节点
当前提交
63a53b51d6
找不到此签名对应的密钥 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)

正在加载...
取消
保存