Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
gitlab_to_aptly [2021/05/29 20:40] okias salsa ci talk |
gitlab_to_aptly [2021/06/29 22:36] (current) okias english |
||
---|---|---|---|
Line 4: | Line 4: | ||
I'm not an Debian maintainer. Nor I want to be in future. | I'm not an Debian maintainer. Nor I want to be in future. | ||
- | My reasons to do all this is that: | + | My reasons to do all this is: |
- I want some specific software to be packaged for Debian | - I want some specific software to be packaged for Debian | ||
- | - when I update packaging on salsa.debian.org I want to have available package for computers and phones | + | - when I update packaging on salsa.debian.org I want to have available package for my devices |
- | - I don't want to bother | + | - I don't want to bother |
- I want also others to be able use my packages | - I want also others to be able use my packages | ||
Line 21: | Line 21: | ||
===== Predisposition ===== | ===== Predisposition ===== | ||
- You did correctly setup **debian/ | - You did correctly setup **debian/ | ||
- | - you didn't disabled | + | - you build for achitectures |
- | You can look at [[https:// | + | You can look at project configuration of [[https:// |
===== Where to start ===== | ===== Where to start ===== | ||
Line 104: | Line 104: | ||
get_artifacts() { | get_artifacts() { | ||
for job in $JOBS; do | for job in $JOBS; do | ||
- | curl -o ${id}_${job}.zip -H ' | + | BRANCH=" |
+ | curl -o ${id}_${job}.zip -H ' | ||
unzip ${id}_${job}.zip && \ | unzip ${id}_${job}.zip && \ | ||
rm ${id}_${job}.zip && \ | rm ${id}_${job}.zip && \ | ||
Line 159: | Line 160: | ||
echo "deb https:// | echo "deb https:// | ||
curl -o / | curl -o / | ||
- | apt update # shouldn' | + | apt update # shouldn' |
</ | </ | ||
now you can install package you desire and test. | now you can install package you desire and test. |