This is the job I use, which installs Rust (rust_bin) and then just prints the cargo version:
build-haikuos:
runs-on: ubuntu-latest
needs: [check]
steps:
- uses: cross-platform-actions/[email protected]
with:
operating_system: "haiku"
shell: bash
version: "r1beta5"
run: |
set -x
pkgman refresh && pkgman install -y rust_bin
cargo version
echo "completed"
However, this fails without even printing any kind of error message 😕
Result:
Any idea what is going on?
Regards.
BTW: If I install package rust_bin in my local (VirtualBox-based) Haiku VM, then cargo version works fine!
This is the job I use, which installs Rust (
rust_bin) and then just prints thecargoversion:However, this fails without even printing any kind of error message 😕
Result:
Any idea what is going on?
Regards.
BTW: If I install package
rust_binin my local (VirtualBox-based) Haiku VM, thencargo versionworks fine!