Fix Debian container: install basic tools before checkout
Some checks failed
Build libfuse / Build and Test (push) Failing after 1m39s
Some checks failed
Build libfuse / Build and Test (push) Failing after 1m39s
- Add step to install git, curl, wget, ca-certificates in Debian container - This fixes the 'git: not found' error from run #20 - Debian container needs basic tools installed before checkout step - Install tools before attempting to clone repository The Debian container is minimal and doesn't include git by default, causing the checkout step to fail with 'command not found' error.
This commit is contained in:
parent
ddfb366cfe
commit
0b5ba9557e
1 changed files with 7 additions and 0 deletions
|
|
@ -16,6 +16,13 @@ jobs:
|
|||
image: debian:trixie
|
||||
|
||||
steps:
|
||||
- name: Install basic tools
|
||||
run: |
|
||||
echo "Installing basic tools in Debian container..."
|
||||
apt-get update
|
||||
apt-get install -y git curl wget ca-certificates
|
||||
echo "Basic tools installed successfully"
|
||||
|
||||
- name: Checkout code
|
||||
run: |
|
||||
echo "Cloning repository..."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue