File tree 5 files changed +28
-5
lines changed
5 files changed +28
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ schedules:
13
13
displayName : At 12:00 AM, only on Monday
14
14
branches :
15
15
include :
16
- - main
16
+ - dev
17
17
always : true
18
18
19
19
resources :
@@ -42,9 +42,9 @@ extends:
42
42
stages :
43
43
- stage : Build
44
44
jobs :
45
- - template : /eng/ci/templates/build-artifacts.yml@self
45
+ - template : /eng/ci/templates/official/jobs/ build-artifacts.yml@self
46
46
47
47
- stage : RunTests
48
48
dependsOn : Build
49
49
jobs :
50
- - template : /eng/ci/templates/ci-e2e-tests.yml@self
50
+ - template : /eng/ci/templates/official/jobs/ ci-e2e-tests.yml@self
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ schedules:
14
14
displayName : At 12:00 AM, only on Monday
15
15
branches :
16
16
include :
17
- - main
17
+ - dev
18
18
always : true
19
19
20
20
resources :
@@ -35,4 +35,4 @@ extends:
35
35
stages :
36
36
- stage : Build
37
37
jobs :
38
- - template : /eng/ci/templates/build-artifacts .yml@self
38
+ - template : /eng/ci/templates/jobs/ build.yml@self
Original file line number Diff line number Diff line change
1
+ jobs :
2
+ - job : " Build"
3
+ displayName : ' Build python worker'
4
+
5
+ pool :
6
+ name : 1es-pool-azfunc-public
7
+ image : 1es-windows-2022
8
+ os : windows
9
+
10
+ steps :
11
+ - task : UsePythonVersion@0
12
+ inputs :
13
+ versionSpec : " 3.11"
14
+ - bash : |
15
+ python --version
16
+ displayName: 'Check python version'
17
+ - bash : |
18
+ python -m venv .env
19
+ source .env/bin/activate
20
+ python -m pip install --upgrade pip==23.0
21
+ python -m pip install .
22
+ displayName: 'Build python worker'
Original file line number Diff line number Diff line change 14
14
packagesToPush : " $(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg"
15
15
packageParentPath : " $(Build.ArtifactStagingDirectory)"
16
16
publishVstsFeed : " e6a70c92-4128-439f-8012-382fe78d6396/f37f760c-aebd-443e-9714-ce725cd427df"
17
+ nuGetFeedType : " internal"
17
18
allowPackageConflicts : true
18
19
19
20
pool :
File renamed without changes.
You can’t perform that action at this time.
0 commit comments