mirror of https://github.com/astral-sh/uv
Disable freebsd test until we resolve the upstream problem (#9620)
See - https://github.com/acj/freebsd-firecracker/issues/1 - https://github.com/acj/freebsd-firecracker-action/issues/1 - #9619
This commit is contained in:
parent
b70c4f30ee
commit
e311b0424d
|
|
@ -601,31 +601,32 @@ jobs:
|
||||||
|
|
||||||
cross build --target x86_64-unknown-freebsd
|
cross build --target x86_64-unknown-freebsd
|
||||||
|
|
||||||
- name: Test in Firecracker VM
|
# See https://github.com/acj/freebsd-firecracker/issues/1
|
||||||
uses: acj/freebsd-firecracker-action@v0.2.0
|
# - name: Test in Firecracker VM
|
||||||
with:
|
# uses: acj/freebsd-firecracker-action@v0.2.0
|
||||||
verbose: false
|
# with:
|
||||||
pre-run: |
|
# verbose: false
|
||||||
# The exclude `*` prevents examination of directories so we need to
|
# pre-run: |
|
||||||
# include each parent directory of the binary
|
# # The exclude `*` prevents examination of directories so we need to
|
||||||
include_path="$(mktemp)"
|
# # include each parent directory of the binary
|
||||||
cat <<EOF > $include_path
|
# include_path="$(mktemp)"
|
||||||
target
|
# cat <<EOF > $include_path
|
||||||
target/x86_64-unknown-freebsd
|
# target
|
||||||
target/x86_64-unknown-freebsd/debug
|
# target/x86_64-unknown-freebsd
|
||||||
target/x86_64-unknown-freebsd/debug/uv
|
# target/x86_64-unknown-freebsd/debug
|
||||||
EOF
|
# target/x86_64-unknown-freebsd/debug/uv
|
||||||
|
# EOF
|
||||||
|
|
||||||
rsync -r -e "ssh" \
|
# rsync -r -e "ssh" \
|
||||||
--relative \
|
# --relative \
|
||||||
--copy-links \
|
# --copy-links \
|
||||||
--include-from "$include_path" \
|
# --include-from "$include_path" \
|
||||||
--exclude "*" \
|
# --exclude "*" \
|
||||||
. firecracker:
|
# . firecracker:
|
||||||
run-in-vm: |
|
# run-in-vm: |
|
||||||
cp target/x86_64-unknown-freebsd/debug/uv uv
|
# cp target/x86_64-unknown-freebsd/debug/uv uv
|
||||||
chmod +x uv
|
# chmod +x uv
|
||||||
./uv --version
|
# ./uv --version
|
||||||
|
|
||||||
ecosystem-test:
|
ecosystem-test:
|
||||||
timeout-minutes: 10
|
timeout-minutes: 10
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue