Install git and essential tools in Debian container
Some checks failed
Build ostree packages from sid to trixie / Build ostree packages (push) Failing after 2s

- Add git to the essential tools installation step
- Debian:unstable container is minimal and doesn't include git by default
- Install git, curl, build-essential, fakeroot, devscripts in setup step
- This should resolve the 'git: not found' error in the checkout step
This commit is contained in:
robojerk 2025-09-06 11:32:22 -07:00
parent 8352506f3b
commit b1e16e9542

View file

@ -46,8 +46,8 @@ jobs:
# Update package lists
apt update -y
# Install essential build tools
apt install -y build-essential fakeroot devscripts curl git
# Install essential tools first (including git)
apt install -y git curl build-essential fakeroot devscripts
- name: Clone ostree from Debian sid
run: |