-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Debian 12 support * Need sqlite3 as the alias doesn't exist on Debian 12 * Need native and also need to install npm for debian-12 * Install flask from OS repos on debian as pip throws errors
- Loading branch information
Showing
10 changed files
with
108 additions
and
19 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 |
---|---|---|
|
@@ -124,6 +124,7 @@ jobs: | |
- amzn2023 | ||
- ubuntu-20.04 | ||
- ubuntu-22.04 | ||
- debian-12 | ||
arch: | ||
- x86_64 | ||
- aarch64 | ||
|
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
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,4 @@ | ||
--- | ||
debian-12: | ||
extra_depends: | ||
- npm |
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,36 @@ | ||
HOSTS: | ||
debian12: | ||
roles: | ||
- agent | ||
platform: debian-12-amd64 | ||
hypervisor : docker | ||
image: arm64v8/debian:12 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- "rm -f /etc/dpkg/dpkg.cfg.d/excludes" | ||
- 'apt-get install -y wget net-tools locales apt-transport-https ca-certificates iproute2' | ||
- 'locale-gen en_US.UTF-8' | ||
docker_env: | ||
- LANG=en_US.UTF-8 | ||
- LANGUAGE=en_US.UTF-8 | ||
- LC_ALL=en_US.UTF-8 | ||
- DEBIAN_FRONTEND=noninteractive | ||
docker_container_name: 'ondemand-debian12' | ||
docker_port_bindings: | ||
22/tcp: | ||
- HostPort: '2222' | ||
HostIp: '127.0.0.1' | ||
8080/tcp: | ||
- HostPort: '8080' | ||
HostIp: '0.0.0.0' | ||
5556/tcp: | ||
- HostPort: '5556' | ||
HostIp: '0.0.0.0' | ||
CONFIG: | ||
log_level: debug | ||
type: foss | ||
ssh: | ||
password: root | ||
auth_methods: ["password"] | ||
|
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,36 @@ | ||
HOSTS: | ||
debian12: | ||
roles: | ||
- agent | ||
platform: debian-12-amd64 | ||
hypervisor : docker | ||
image: debian:12 | ||
docker_preserve_image: true | ||
docker_cmd: '["/sbin/init"]' | ||
docker_image_commands: | ||
- "rm -f /etc/dpkg/dpkg.cfg.d/excludes" | ||
- 'apt-get install -y wget net-tools locales apt-transport-https ca-certificates iproute2' | ||
- 'locale-gen en_US.UTF-8' | ||
docker_env: | ||
- LANG=en_US.UTF-8 | ||
- LANGUAGE=en_US.UTF-8 | ||
- LC_ALL=en_US.UTF-8 | ||
- DEBIAN_FRONTEND=noninteractive | ||
docker_container_name: 'ondemand-debian12' | ||
docker_port_bindings: | ||
22/tcp: | ||
- HostPort: '2222' | ||
HostIp: '127.0.0.1' | ||
8080/tcp: | ||
- HostPort: '8080' | ||
HostIp: '0.0.0.0' | ||
5556/tcp: | ||
- HostPort: '5556' | ||
HostIp: '0.0.0.0' | ||
CONFIG: | ||
log_level: debug | ||
type: foss | ||
ssh: | ||
password: root | ||
auth_methods: ["password"] | ||
|