Created
June 15, 2020 16:36
-
-
Save ookami-kb/a7e66beb79336e8ec295ffbd4c323368 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| trigger: none | |
| pr: | |
| - master | |
| jobs: | |
| - job: Test | |
| timeoutInMinutes: 20 | |
| pool: | |
| vmImage: 'macOS-latest' | |
| steps: | |
| - script: pipelines/scripts.sh install_flutter | |
| displayName: Install Flutter | |
| - script: pipelines/scripts.sh flutter_test | |
| displayName: Test app | |
| - script: ../pipelines/scripts.sh pull_video | |
| displayName: Pull screen video record | |
| condition: always() | |
| - task: PublishBuildArtifacts@1 | |
| displayName: Publish screenshots | |
| condition: always() | |
| inputs: | |
| pathtoPublish: '$(System.DefaultWorkingDirectory)/screenshots/' | |
| artifactName: screenshots |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment