File: release_helper.yml

package info (click to toggle)
python-azure 20250603%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 851,724 kB
  • sloc: python: 7,362,925; ansic: 804; javascript: 287; makefile: 195; sh: 145; xml: 109
file content (79 lines) | stat: -rw-r--r-- 2,047 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Release status statistics

name: ReleaseHelper

trigger:
  branches:
    exclude:
    - '*'

# avoid being triggered as part of CI check
pr:
  branches:
    exclude:
    - '*'


schedules:
  - cron: "0,30 1-9 * * *"
    displayName: Daily release
    branches:
      include:
      - main
    always: true

variables:
  - group: Release Secrets for GitHub
  - group: SDK Release Helper
  - group: Azure SDK Auto Release Pipeline Secrets


jobs:
- job: ReleaseHelper
  displayName: ReleaseHelper Python 3.9
  timeoutInMinutes: 30
  strategy:
    maxParallel: 1
  pool:
    name: azsdk-pool
    vmImage: 'ubuntu-22.04'
  variables:
    Codeql.Enabled: false
  steps:
    - task: UsePythonVersion@0
      inputs:
        versionSpec: '3.9'
        addToPath: true
        architecture: 'x64'
    - bash: |
        script_path=$(pwd)/scripts/release_helper
        cd ..
        git config --global user.email "ReleaseHelper"
        git config --global user.name "ReleaseHelper"

        # clone(REPO: https://github.com/Azure/azure-sdk-for-python.git, USR_NAME: Azure, USR_TOKEN: xxxxxxxxxxxxx)
        mkdir file-storage
        git clone ${FILE_REPO:0:8}$(USR_NAME):$(Yuchao-GitToken)@${FILE_REPO:8} $(pwd)/file-storage

        mkdir azure-rest-api-specs
        git clone -b $(SPEC_BRANCH) https://github.com/Azure/azure-rest-api-specs.git $(pwd)/azure-rest-api-specs

        # import env variable
        export AZURESDK_BOT_TOKEN=$(azuresdk-github-pat)
        export PIPELINE_TOKEN=$(PIPELINE-TOKEN)
        export LANGUAGE=$(RUN_LANGUAGE)
        export SPEC_REPO=$(pwd)/azure-rest-api-specs/specification
        export TYPESPEC_JSON=$(pwd)/file-storage/data/typespec.json
        export TEST_ISSUE_NUMBER=$(TEST_ISSUE_NUMBER)

        # create virtual env
        python -m venv venv-sdk
        source venv-sdk/bin/activate
        python -m pip install -r $script_path/requirement.txt

        # checkout the target branch
        cd file-storage
        git checkout release-helper

        # run
        python $script_path/main.py