-
-
Notifications
You must be signed in to change notification settings - Fork 378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
github CI: nightly builds for multiple distributions #1270
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1270 +/- ##
===========================================
+ Coverage 0 74.70% +74.70%
===========================================
Files 0 144 +144
Lines 0 16216 +16216
===========================================
+ Hits 0 12114 +12114
- Misses 0 3158 +3158
- Partials 0 944 +944 ☔ View full report in Codecov by Sentry. |
d3f9d27
to
f272d42
Compare
f272d42
to
18ccab5
Compare
18ccab5
to
8906683
Compare
Since the pipeline changed to use ucuntu22.04 runners, the nighty debian packages do not work on debian buster anymore. This change updates the pipeline to build for Ubuntu 20.04 and 22.04 as well as for Debian 10, 11 and 12. The distribution specific apt sources are as follows: "deb http://repo.aptly.info/nightly-bookworm bookworm main" (replace bookworm with focal, buster, bullseye. Install aptly repo key with: curl -fsS https://www.aptly.info/pubkey.txt | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/aptly.gpg) The builds on focal will also release to the legacy nightly apt repo: https://github.com/aptly-dev/aptly/actions/runs/8723898496/job/23933824692#step:7:24 This only affects nightly builds, for now. Pipeline example: [](https://github.com/aptly-dev/aptly/actions/runs/8723898496)
8906683
to
da9933d
Compare
curl -fsS -X DELETE -u $aptly_user:$aptly_password ${aptly_api}/api/files/$folder | ||
echo | ||
} | ||
trap cleanup EXIT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wanna trap also INT and TERM ? (eg system reboot...)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think both result in EXIT
Fixes #1251
Description of the Change