-
Notifications
You must be signed in to change notification settings - Fork 25
Switch native_full_build container to ubuntu:22.04 #186
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
Changes from all commits
620185a
dd5e10e
830567c
3aaf6a9
4f4c7b2
ef827a6
badeeae
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,9 +9,28 @@ cd ${GITHUB_WORKSPACE} | |
| # # ############################# | ||
| #1. Install Dependencies and packages | ||
|
|
||
| apt update | ||
| apt install -y ninja-build meson curl libsoup2.4-dev libxml2-dev libglib2.0-dev gobject-introspection libgirepository1.0-dev libgtk-3-dev valac pandoc | ||
| pip install jsonref | ||
| apt-get update | ||
| apt-get install -y \ | ||
| git \ | ||
| python3 \ | ||
| python3-pip \ | ||
| cmake \ | ||
| libcunit1 \ | ||
| libcunit1-doc \ | ||
| libcunit1-dev \ | ||
| libcurl4-openssl-dev \ | ||
| ninja-build \ | ||
| meson \ | ||
| curl \ | ||
| libsoup2.4-dev \ | ||
| libxml2-dev \ | ||
| libglib2.0-dev \ | ||
| gobject-introspection \ | ||
| libgirepository1.0-dev \ | ||
| libgtk-3-dev \ | ||
| valac \ | ||
| pandoc | ||
|
Comment on lines
+13
to
+32
|
||
| pip3 install jsonref | ||
|
|
||
| ############################ | ||
| # Build trevor-base64 | ||
|
|
||
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.
Consider setting DEBIAN_FRONTEND=noninteractive before running apt-get commands to prevent interactive prompts during package installation in CI environments. This can be done by adding
export DEBIAN_FRONTEND=noninteractivebefore the apt-get commands or by prefixing the commands with the environment variable.