-
Notifications
You must be signed in to change notification settings - Fork 6
185 lines (158 loc) · 5.27 KB
/
vfox-test.yaml
File metadata and controls
185 lines (158 loc) · 5.27 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
name: vfox-test
on:
workflow_call:
workflow_dispatch:
pull_request:
types: ["opened", "reopened", "synchronize"]
push:
tags: ["v*"]
permissions:
contents: write
jobs:
test-on-linux:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.12.2]
mirror: ["", "https://mirrors.huaweicloud.com/python/"]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Compress build files
uses: thedoctor0/zip-release@0.7.6
with:
type: "zip"
directory: "./"
filename: "release.zip"
exclusions: "*.git* manifest.json"
- name: Install vfox
shell: bash
run: |
for i in {1..10}; do
curl -sSL https://raw.githubusercontent.com/version-fox/vfox/main/install.sh | bash && break || sleep 5;
done
vfox --version
- name: Install plugin
run: |
vfox add --source ./release.zip
- name: Install Python ${{ matrix.python-version }}
env:
VFOX_PYTHON_MIRROR: ${{ matrix.mirror }}
run: |
eval "$(vfox activate bash)"
vfox install python@${{ matrix.python-version }}
vfox use -g python@${{ matrix.python-version }}
vfox current
- name: Check python ${{ matrix.python-version }}
run: |
eval "$(vfox activate bash)"
python_version=$(python -c 'import sys;print(sys.version, sys.path)')
echo $python_version
if [[ ! $python_version == ${{ matrix.python-version }}* ]]; then
exit 1
fi
- name: Install Python 3.10.20 with uv-build
if: matrix.mirror == ''
env:
VFOX_PYTHON_USE_UV_BUILD: "1"
run: |
eval "$(vfox activate bash)"
vfox install python@3.10.20
vfox use -g python@3.10.20
vfox current
- name: Check uv-build python 3.10.20
if: matrix.mirror == ''
run: |
eval "$(vfox activate bash)"
python_version=$(python -c 'import sys;print(sys.version)')
echo $python_version
if [[ ! $python_version == 3.10.20* ]]; then
exit 1
fi
python -m pip --version
pip --version
test-on-windows:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
python-version: [3.12.2]
mirror: ["", "https://mirrors.huaweicloud.com/python/"]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Compress build files
uses: thedoctor0/zip-release@0.7.6
with:
type: "zip"
directory: "./"
filename: "release.zip"
exclusions: "*.git* manifest.json"
- name: Install vfox
if: runner.os == 'Windows'
shell: powershell
run: |
iex "& {$(irm get.scoop.sh)} -RunAsAdmin"
Join-Path (Resolve-Path ~).Path "scoop\shims" >> $Env:GITHUB_PATH
scoop install vfox
vfox --version
- name: Install plugin
if: runner.os == 'Windows'
run: |
Invoke-Expression "$(vfox activate pwsh)"
vfox add --source ./release.zip
- name: Install Python ${{ matrix.python-version }}
if: runner.os == 'Windows'
env:
VFOX_PYTHON_MIRROR: ${{ matrix.mirror }}
run: |
Invoke-Expression "$(vfox activate pwsh)"
vfox install python@${{ matrix.python-version }}
vfox use -g python@${{ matrix.python-version }}
vfox current
- name: Check python ${{ matrix.python-version }}
if: runner.os == 'Windows'
run: |
Invoke-Expression "$(vfox activate pwsh)"
$python_version = $(python -c 'import sys;print(sys.version, sys.path)')
Write-Output $python_version
if ($python_version -notlike "${{ matrix.python-version }}*") {
exit 1
}
- name: Install Python 3.10.20 with uv-build
if: runner.os == 'Windows' && matrix.mirror == ''
env:
VFOX_PYTHON_USE_UV_BUILD: "1"
run: |
Invoke-Expression "$(vfox activate pwsh)"
vfox install python@3.10.20
if ($LASTEXITCODE -ne 0) {
exit $LASTEXITCODE
}
vfox use -g python@3.10.20
if ($LASTEXITCODE -ne 0) {
exit $LASTEXITCODE
}
vfox current
$python_version = $(python -c 'import sys;print(sys.version)')
if ($LASTEXITCODE -ne 0) {
Write-Error "failed to run python after uv-build install"
exit $LASTEXITCODE
}
Write-Output $python_version
if ($python_version -notlike "3.10.20*") {
Write-Error "expected uv-build python 3.10.20, got $python_version"
exit 1
}
- name: Check uv-build python 3.10.20
if: runner.os == 'Windows' && matrix.mirror == ''
run: |
Invoke-Expression "$(vfox activate pwsh)"
$python_version = $(python -c 'import sys;print(sys.version)')
Write-Output $python_version
if ($python_version -notlike "3.10.20*") {
exit 1
}
python -m pip --version
pip --version