Skip to content
Open
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
4 changes: 2 additions & 2 deletions playbooks/roles/uu_generic/molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ provisioner:
ANSIBLE_ROLES_PATH: ../../../
role_name_check: 1
platforms:
- name: workspace-src-ubuntu_focal-desktop
image: ghcr.io/utrechtuniversity/src-test-workspace:ubuntu_focal-desktop
- name: workspace-src-ubuntu_jammy-desktop
image: ghcr.io/utrechtuniversity/src-test-workspace:ubuntu_jammy-desktop
pre_build_image: true
command: /sbin/init
privileged: true # needed for snapd
Expand Down
13 changes: 5 additions & 8 deletions playbooks/roles/uu_generic/tasks/apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@
- name: Install desktop apps
when: fact_desktop_workspace
block:
- name: Refresh snaps
ansible.builtin.command: snap refresh
tags: molecule-idempotence-notest

- name: Install VSCodium
ansible.builtin.command: snap install codium --classic
register: uu_generic_install_codium
changed_when: '"already installed" not in uu_generic_install_codium.stderr'
- name: Install codium
community.general.snap:
classic: true
state: present
name: codium

- name: Install run_and_pause script
ansible.builtin.template:
Expand Down
Loading