gitea worklow improved
Build Debian Packages / build (bookworm, debian12) (push) Failing after 6m47s
Build Debian Packages / build (bullseye, debian11) (push) Failing after 5m42s
Build Debian Packages / build (trixie, debian13) (push) Failing after 7m24s

This commit is contained in:
2026-03-16 14:42:34 +01:00
parent a4998939b4
commit 6c984956f5
2 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ jobs:
- name: Install Node.js and git
run: |
apt-get update
apt-get install nodejs git
apt-get -y install nodejs git
- name: Checkout repository
uses: actions/checkout@v3
+9 -5
View File
@@ -1,16 +1,20 @@
#!/bin/bash
sudo apt install libcairo2-dev
sudo apt install python3-scipy python3-lmfit python3-matplotlib python3-tables python3-xdg
sudo apt install gir1.2-gtksource-3.0
apt-get -y install libcairo2-dev
apt-get -y install python3-scipy python3-lmfit python3-matplotlib python3-tables python3-xdg
apt-get -y install gir1.2-gtksource-3.0
DEBRELEASE=$(lsb_release -cs)
case $DEBRELEASE in
"trixie")
echo "Trixie detected"
sudo apt install libgirepository-2.0-dev
apt-get -y install libgirepository-2.0-dev
;;
"bookworm")
echo "Bookworm detected"
sudo apt install libgirepository1.0-dev
apt-get -y install libgirepository1.0-dev
;;
"bullseye")
echo "Bullseye detected"
apt-get -y install libgirepository1.0-dev
;;
*)
echo "not implemented" ; exit 1