Add comprehensive debugging to identify build failure
All checks were successful
Build ostree packages from sid to trixie / build (push) Successful in 56s
All checks were successful
Build ostree packages from sid to trixie / build (push) Successful in 56s
- Add debugging output to see what happens during apt source ostree - Add error handling to catch if apt source fails - This will help identify where the build is actually failing
This commit is contained in:
parent
db0ef6bf91
commit
7a21dda165
1 changed files with 21 additions and 1 deletions
|
|
@ -97,8 +97,28 @@ jobs:
|
|||
# Clone ostree from sid
|
||||
echo 'Cloning ostree from Debian sid...'
|
||||
cd /tmp
|
||||
apt source ostree
|
||||
echo 'Current directory before apt source:'
|
||||
pwd
|
||||
ls -la
|
||||
echo 'Running apt source ostree...'
|
||||
if apt source ostree; then
|
||||
echo 'apt source ostree succeeded'
|
||||
else
|
||||
echo 'apt source ostree failed!'
|
||||
echo 'Checking available packages:'
|
||||
apt search ostree | head -10
|
||||
echo 'Checking sources:'
|
||||
cat /etc/apt/sources.list
|
||||
exit 1
|
||||
fi
|
||||
echo 'After apt source, checking directory:'
|
||||
ls -la
|
||||
echo 'Looking for ostree directory:'
|
||||
ls -la ostree-* || echo 'No ostree directory found'
|
||||
cd ostree-*
|
||||
echo 'Changed to ostree directory:'
|
||||
pwd
|
||||
ls -la
|
||||
|
||||
# Update changelog for trixie
|
||||
echo 'Updating changelog for trixie...'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue