We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed77303 commit 4cc5a36Copy full SHA for 4cc5a36
pipelines/test-pipeline.yml
@@ -0,0 +1,26 @@
1
+trigger:
2
+ branches:
3
+ include:
4
+ - master
5
+
6
+pr:
7
8
9
+ - '*'
10
11
+variables:
12
+ - name: app_version
13
+ value: test
14
15
+jobs:
16
+- job: build_and_test
17
+ pool:
18
+ vmImage: ubuntu-20.04
19
+ steps:
20
+ - task: UsePythonVersion@0
21
+ inputs:
22
+ versionSpec: '3.5'
23
+ - script: pip install -r requirements.txt
24
+ displayName: 'Install pip packages'
25
+ - script: ./release.sh test 7.1.1 $(app_version)
26
+ displayName: 'Build Docker image with Android 7.1.1 and run unit tests'
0 commit comments