Skip to content

Commit 31d5280

Browse files
authored
Revert "DRIVERS-3032 Add support for ubuntu2204-arm64" (#591)
1 parent 8510323 commit 31d5280

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.evergreen/config.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1289,10 +1289,6 @@ axes:
12891289
display_name: "macOS 14 arm64"
12901290
run_on: macos-14-arm64
12911291

1292-
- id: ubuntu2204-arm64
1293-
display_name: "Ubuntu 22.04 (ARM64)"
1294-
run_on: ubuntu2204-arm64-small
1295-
12961292
- id: rhel8
12971293
display_name: "RHEL 80"
12981294
run_on: rhel80-small

.evergreen/install-cli.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ fi
5858
if [ "Windows_NT" == "${OS:-}" ]; then
5959
TMP_DIR=$(cygpath -m "$(mktemp -d)")
6060
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 .
6262
filenames=$(ls ${TMP_DIR})
6363
for filename in $filenames; do
6464
mv $TMP_DIR/$filename "$1/${filename//.exe/}"
6565
done
6666
rm -rf $TMP_DIR
6767
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 .
6969
fi
7070

7171
popd > /dev/null

0 commit comments

Comments
 (0)