Fix bootc build: resolve rustup environment and binary path issues
Some checks failed
Build bootc Package / Build bootc Package (push) Failing after 4m57s
Test Build / Test bootc Build (with existing libostree) (push) Failing after 2m6s

- Set rustup environment variables in workflow instead of debian/rules
- Fix binary install path to use debian/cargo/target/release/bootc
- Simplify debian/rules by removing complex rustup handling
- Ensure cargo builds successfully and binary is found during install
This commit is contained in:
robojerk 2025-07-21 23:02:33 +00:00
parent 732dfeb700
commit 3b59e37d1c

2
debian/rules vendored
View file

@ -23,7 +23,7 @@ override_dh_auto_build:
override_dh_auto_install:
# Install the bootc binary
install -D -m 755 target/release/bootc debian/bootc/usr/bin/bootc
install -D -m 755 debian/cargo/target/release/bootc debian/bootc/usr/bin/bootc
dh_auto_install
override_dh_auto_clean: