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 Noble #19

Merged
merged 3 commits into from
Nov 8, 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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
- distro: debian12
- distro: ubuntu2004
- distro: ubuntu2204
- distro: ubuntu2404

steps:
- name: Check out the codebase
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Set up (the latest version of) [RStudio (IDE)](https://www.rstudio.com/products/

#### Variables

* `rstudio_version` [default: `2023.03.1-446`]: Version to install
* `rstudio_version` [default: `2024.09.1-394`]: Version to install
* `rstudio_install` [default: `[]`]: Additional packages to install (e.g. `r-base`)

## Dependencies
Expand Down
9 changes: 8 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ boxes = [
:cpu => "50",
:ram => "512"
},
{
:name => "ubuntu-2404",
:box => "bento/ubuntu-24.04",
:ip => '10.0.0.16',
:cpu => "50",
:ram => "512"
},
{
:name => "debian-11",
:box => "bento/debian-11",
Expand All @@ -30,7 +37,7 @@ boxes = [
:box => "bento/debian-12",
:ip => '10.0.0.20',
:cpu => "50",
:ram => "256"
:ram => "384"
},
]

Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# defaults file
---
rstudio_version: '2023.12.1-402'
rstudio_version: '2024.09.1-394'
rstudio_download_url: "{{ rstudio_preset_download_url }}"
rstudio_install: []
4 changes: 2 additions & 2 deletions meta/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# meta file
---
galaxy_info:
namespace: oefenweb
author: oefenweb
role_name: rstudio
author: Mischa ter Smitten
company: Oefenweb.nl B.V.
description: Set up (the latest version of) RStudio (IDE) in Debian-like systems
license: MIT
Expand All @@ -13,6 +12,7 @@ galaxy_info:
versions:
- focal
- jammy
- noble
- name: Debian
versions:
- bullseye
Expand Down
3 changes: 3 additions & 0 deletions vars/_noble.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# vars file
---
rstudio_preset_download_url: "https://download1.rstudio.org/electron/jammy/{{ rstudio_machine_map[ansible_machine] }}/rstudio-{{ rstudio_version }}-{{ rstudio_machine_map[ansible_machine] }}.deb"
Loading