fix libostree-dev packages not installing
Some checks failed
Build bootc Package / Build bootc Package (push) Successful in 5m22s
Test Build / Test bootc Build (with existing libostree) (push) Failing after 4m23s

This commit is contained in:
robojerk 2025-07-21 23:38:22 +00:00
parent 3b8811d10e
commit 6dc48aa572
2 changed files with 18 additions and 1 deletions

View file

@ -44,7 +44,15 @@ jobs:
- name: Install build dependencies
run: |
apt update -y
apt install -y libglib2.0-dev libzstd-dev libssl-dev pkg-config
apt install -y libglib2.0-dev libzstd-dev libssl-dev pkg-config curl
# Add Forgejo repository for libostree packages
curl -fsSL https://git.raines.xyz/api/packages/robojerk/debian/repository.key -o /etc/apt/keyrings/forgejo-robojerk.asc
echo "deb [signed-by=/etc/apt/keyrings/forgejo-robojerk.asc] https://git.raines.xyz/api/packages/robojerk/debian noble main" | tee -a /etc/apt/sources.list.d/forgejo.list
apt update -y
# Install libostree packages from Forgejo
apt install -y libostree-dev=2025.2-1~noble1 libostree-1-1=2025.2-1~noble1
- name: Check libostree version
run: |

View file

@ -1 +1,10 @@
**Current**
MAIN GOAL, get all ci/cd building the package successfully
Added libssl-dev to resolve openssl-sys build dependency
Should now pass the cargo build test
**Next**
Get ci/cd to build bootc package, and then assign the package in my user profile to the bootc-deb repo
**Future**
Have ci/cd not do anything if i do something like just update readme.md and not any actual code