snap: enable ubuntu in integration tests (#6299)
enable ubuntu in integration tests for snappull/5887/merge
parent
a64e36820f
commit
37cddb8c02
|
@ -0,0 +1,19 @@
|
||||||
|
---
|
||||||
|
# Copyright (c) Ansible Project
|
||||||
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
- name: Install snapd (ubuntu)
|
||||||
|
package:
|
||||||
|
name: "{{ snap_packages }}"
|
||||||
|
state: present
|
||||||
|
notify: Remove snapd
|
||||||
|
|
||||||
|
- name: Make sure that snapd is running
|
||||||
|
service:
|
||||||
|
name: snapd
|
||||||
|
state: started
|
||||||
|
|
||||||
|
- name: Inform that snap is installed
|
||||||
|
set_fact:
|
||||||
|
has_snap: true
|
|
@ -3,7 +3,7 @@
|
||||||
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
- name: Install snapd
|
- name: Install snapd (default)
|
||||||
package:
|
package:
|
||||||
name: "{{ snap_packages }}"
|
name: "{{ snap_packages }}"
|
||||||
state: present
|
state: present
|
||||||
|
|
|
@ -11,4 +11,3 @@ skip/freebsd
|
||||||
skip/osx
|
skip/osx
|
||||||
skip/macos
|
skip/macos
|
||||||
skip/docker
|
skip/docker
|
||||||
skip/ubuntu # FIXME!
|
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
- name: Check package has been installed correctly (hello-world)
|
- name: Check package has been installed correctly (hello-world)
|
||||||
command: hello-world
|
command: hello-world
|
||||||
environment:
|
environment:
|
||||||
PATH: /var/lib/snapd/snap/bin/
|
PATH: /snap/bin/
|
||||||
|
|
||||||
- name: Remove package (hello-world) (check mode)
|
- name: Remove package (hello-world) (check mode)
|
||||||
community.general.snap:
|
community.general.snap:
|
||||||
|
|
Loading…
Reference in New Issue