Skip to content
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

Add support for Ubuntu 24.04 #244

Merged
merged 3 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Update system packages
run: apt-get update -y
- name: Install needed packages
run: apt-get install -y lsb-release sudo python3-pip openssh-server ansible
run: apt-get install -y lsb-release sudo openssh-server ansible
- name: Create hosts file
run: echo "localhost ansible_connection=local ansible_user=root" > hosts
- name: Generate dummy SSH key
Expand Down
12 changes: 4 additions & 8 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,16 @@ jobs:
matrix:
platforms: [
{ os: "ubuntu-20.04", errbit: "True" },
{ os: "ubuntu-22.04", errbit: "False"}
{ os: "ubuntu-22.04", errbit: "False"},
{ os: "ubuntu-24.04", errbit: "False"}
]
rails_env: [staging, production]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Update system packages
run: sudo apt-get update -y
- name: Install OpenSSH
run: sudo apt-get install -y openssh-server
- name: Install Ansible
run: pip3 install ansible
- name: Install needed packages
run: sudo apt-get install -y openssh-server ansible
- name: Create hosts file
run: echo "localhost ansible_connection=local ansible_user=root" > hosts
- name: Generate dummy SSH key
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ A remote server with one of the supported distributions:

- Ubuntu 20.04 x64
- Ubuntu 22.04 x64
- Ubuntu 24.04 x64
- Debian Bullseye x64
- Debian Bookworm x64

Expand Down
Loading