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:
Zanie Blue 2024-12-03 15:04:17 -06:00 committed by GitHub
parent b70c4f30ee
commit e311b0424d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 25 additions and 24 deletions

View File

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