-
Notifications
You must be signed in to change notification settings - Fork 30
87 lines (75 loc) · 2.86 KB
/
Copy pathbuild-package.yml
File metadata and controls
87 lines (75 loc) · 2.86 KB
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
80
81
82
83
84
85
86
87
name: Build Package
on:
workflow_call:
inputs:
package:
description: 'Package directory name (e.g. uipath-core)'
required: true
type: string
needs-relock:
description: 'Whether to re-lock against PyPI before building (for packages with internal dependencies)'
required: false
type: boolean
default: false
secrets:
APPLICATIONINSIGHTS_CONNECTION_STRING_ALPHA:
required: false
APPLICATIONINSIGHTS_CONNECTION_STRING_STAGING:
required: false
APPLICATIONINSIGHTS_CONNECTION_STRING_PROD:
required: false
env:
SAFE_CHAIN_MINIMUM_PACKAGE_AGE_EXCLUSIONS: uipath-runtime
permissions:
contents: read
actions: write
jobs:
build:
name: Build ${{ inputs.package }}
runs-on: uipath-ubuntu-latest
defaults:
run:
working-directory: packages/${{ inputs.package }}
steps:
- name: Checkout
uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
- name: Setup uv
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5.4.2
with:
enable-cache: true
- name: Setup Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version-file: "packages/${{ inputs.package }}/.python-version"
- name: Install dependencies
run: uv sync --all-extras
- name: Update AGENTS.md
if: inputs.package == 'uipath'
run: uv run python scripts/update_agents_md.py
- name: Replace connection string placeholder
if: inputs.package == 'uipath'
run: |
originalfile="src/uipath/telemetry/_constants.py"
tmpfile=$(mktemp)
trap 'rm -f "$tmpfile"' EXIT
rsync -a --no-whole-file --ignore-existing "$originalfile" "$tmpfile"
envsubst '$CONNECTION_STRING_ALPHA $CONNECTION_STRING_STAGING $CONNECTION_STRING_PROD' < "$originalfile" > "$tmpfile" && mv "$tmpfile" "$originalfile"
env:
CONNECTION_STRING_ALPHA: ${{ secrets.APPLICATIONINSIGHTS_CONNECTION_STRING_ALPHA }}
CONNECTION_STRING_STAGING: ${{ secrets.APPLICATIONINSIGHTS_CONNECTION_STRING_STAGING }}
CONNECTION_STRING_PROD: ${{ secrets.APPLICATIONINSIGHTS_CONNECTION_STRING_PROD }}
- name: Re-lock against PyPI
if: inputs.needs-relock
run: |
for i in 1 2 3; do
uv lock --no-sources --no-cache && break
echo "Attempt $i failed, retrying in 5s..."
sleep 5
done
- name: Build
run: uv build --no-sources --package ${{ inputs.package }}
- name: Upload artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
with:
name: release-dists-${{ inputs.package }}
path: packages/${{ inputs.package }}/dist/