File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -1289,10 +1289,6 @@ axes:
1289
1289
display_name : " macOS 14 arm64"
1290
1290
run_on : macos-14-arm64
1291
1291
1292
- - id : ubuntu2204-arm64
1293
- display_name : " Ubuntu 22.04 (ARM64)"
1294
- run_on : ubuntu2204-arm64-small
1295
-
1296
1292
- id : rhel8
1297
1293
display_name : " RHEL 80"
1298
1294
run_on : rhel80-small
Original file line number Diff line number Diff line change 58
58
if [ " Windows_NT" == " ${OS:- } " ]; then
59
59
TMP_DIR=$( cygpath -m " $( mktemp -d) " )
60
60
PATH=" $SCRIPT_DIR /venv/Scripts:$PATH "
61
- UV_TOOL_BIN_DIR=${TMP_DIR} python -m uv tool install ${EXTRA_ARGS} --force --editable .
61
+ UV_TOOL_BIN_DIR=${TMP_DIR} uv tool install ${EXTRA_ARGS} --force --editable .
62
62
filenames=$( ls ${TMP_DIR} )
63
63
for filename in $filenames ; do
64
64
mv $TMP_DIR /$filename " $1 /${filename// .exe/ } "
65
65
done
66
66
rm -rf $TMP_DIR
67
67
else
68
- UV_TOOL_BIN_DIR=$( pwd) python -m uv tool install -q ${EXTRA_ARGS} --python " $( which python) " --force --editable .
68
+ UV_TOOL_BIN_DIR=$( pwd) uv tool install -q ${EXTRA_ARGS} --python " $( which python) " --force --editable .
69
69
fi
70
70
71
71
popd > /dev/null
You can’t perform that action at this time.
0 commit comments