-
Notifications
You must be signed in to change notification settings - Fork 588
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support release testing of Debian 10/11/12
- Loading branch information
1 parent
495b1b2
commit f36191f
Showing
3 changed files
with
43 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "Debian 10", | ||
"ami_owner": "136693071363", | ||
"ami_name_pattern": "debian-10-*", | ||
"user": "admin", | ||
"setup_commands": [ | ||
"cloud-init status --wait", | ||
"export DEBIAN_FRONTEND=noninteractive UCF_FORCE_CONFNEW=1", | ||
"sudo -E apt-get update -y", | ||
"sudo -E apt-get dist-upgrade -f -y" | ||
], | ||
"install_build_deps": "sudo -E apt-get install -y rpm ccache cmake g++-multilib pkg-config zlib1g-dev git python-dev libacl1-dev ninja-build manpages-dev capnproto libcapnp-dev gdb python3-pexpect", | ||
"install_test_deps": "sudo -E apt-get install -y locales-all tightvncserver xtightvncviewer curl tar bzip2 libdbus-glib-1-2 libreoffice", | ||
"exclude_tests": ["x86/pkeys.*"] | ||
} |
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,14 @@ | ||
{ | ||
"name": "Debian 11", | ||
"ami_owner": "136693071363", | ||
"ami_name_pattern": "debian-11-*", | ||
"user": "admin", | ||
"setup_commands": [ | ||
"cloud-init status --wait", | ||
"export DEBIAN_FRONTEND=noninteractive UCF_FORCE_CONFNEW=1", | ||
"sudo -E apt-get update -y", | ||
"sudo -E apt-get dist-upgrade -f -y" | ||
], | ||
"install_build_deps": "sudo -E apt-get install -y rpm ccache cmake g++-multilib pkg-config zlib1g-dev git python-dev libacl1-dev ninja-build manpages-dev capnproto libcapnp-dev gdb python3-pexpect", | ||
"install_test_deps": "sudo -E apt-get install -y locales-all tightvncserver xtightvncviewer curl tar bzip2 libdbus-glib-1-2 libreoffice" | ||
} |
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,14 @@ | ||
{ | ||
"name": "Debian 12", | ||
"ami_owner": "136693071363", | ||
"ami_name_pattern": "debian-12-*", | ||
"user": "admin", | ||
"setup_commands": [ | ||
"cloud-init status --wait", | ||
"export DEBIAN_FRONTEND=noninteractive UCF_FORCE_CONFNEW=1", | ||
"sudo -E apt-get update -y", | ||
"sudo -E apt-get dist-upgrade -f -y" | ||
], | ||
"install_build_deps": "sudo -E apt-get install -y rpm ccache cmake g++-multilib pkg-config zlib1g-dev git python-dev-is-python3 libacl1-dev ninja-build manpages-dev capnproto libcapnp-dev gdb python3-pexpect", | ||
"install_test_deps": "sudo -E apt-get install -y locales-all tightvncserver xtightvncviewer curl tar bzip2 libdbus-glib-1-2 libreoffice" | ||
} |