-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #253 from xen0n/platform-baseline-ci
Ensure compatibility with the platform support baseline in CI
- Loading branch information
Showing
5 changed files
with
94 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
main() { | ||
local pkglist=( | ||
# Package versions provided by Ubuntu 22.04 LTS. | ||
python3-arpy # 1.1.1 | ||
python3-certifi # 2020.6.20 | ||
python3-jinja2 # 3.0.3 | ||
python3-packaging # 21.3 | ||
python3-pygit2 # 1.6.1 | ||
python3-yaml # 5.4.1 # https://github.com/yaml/pyyaml/issues/724 | ||
python3-requests # 2.25.1 | ||
python3-rich # 11.2.0 | ||
python3-semver # 2.10.2 | ||
python3-tomli # 1.2.2 | ||
python3-tomlkit # 0.9.2 | ||
python3-typing-extensions # 3.10.0.2 | ||
) | ||
|
||
export DEBIAN_FRONTEND=noninteractive | ||
export DEBCONF_NONINTERACTIVE_SEEN=true | ||
sudo apt-get update -qqy | ||
sudo apt-get install -y "${pkglist[@]}" | ||
} | ||
|
||
main "$@" |