mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 06:10:22 -07:00
flatpak: add tests in CI, add no_dependencies parameter (#2751)
* Similar version restrictions than flatpak_remote tests.
* ...
* Try to work around missing dependencies.
* Revert "Try to work around missing dependencies."
This reverts commit 66a4e38566
.
* Add changelog.
* App8 -> App2; make sure that there are two apps App1 and App2.
* Fix forgotten variabe.
* Remove test notices.
* Seems like flatpak no longer supports file:// URLs.
The tests would need to be rewritten to offer the URL via http:// instead.
* Try local HTTP server for URL tests.
* ...
* Lint, add status check.
* Add boilerplate.
* Add 'ps aux'.
* Surrender to -f.
* Work around apparent flatpak bug.
* Fix YAML.
* Improve condition.
* Make sure test reruns behave better.
This commit is contained in:
parent
94a53adff1
commit
bb37b67166
12 changed files with 255 additions and 140 deletions
|
@ -4,32 +4,58 @@
|
|||
state: present
|
||||
become: true
|
||||
when: ansible_distribution == 'Fedora'
|
||||
|
||||
- block:
|
||||
- name: Activate flatpak ppa on Ubuntu
|
||||
apt_repository:
|
||||
repo: ppa:alexlarsson/flatpak
|
||||
state: present
|
||||
mode: '0644'
|
||||
when: ansible_lsb.major_release | int < 18
|
||||
|
||||
- name: Install flatpak package on Ubuntu
|
||||
apt:
|
||||
name: flatpak
|
||||
state: present
|
||||
become: true
|
||||
|
||||
when: ansible_distribution == 'Ubuntu'
|
||||
- name: Enable flathub for user
|
||||
|
||||
- name: Install dummy remote for user
|
||||
flatpak_remote:
|
||||
name: flathub
|
||||
name: dummy-remote
|
||||
state: present
|
||||
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||
flatpakrepo_url: /tmp/flatpak/repo/dummy-repo.flatpakrepo
|
||||
method: user
|
||||
- name: Enable flathub for system
|
||||
|
||||
- name: Install dummy remote for system
|
||||
flatpak_remote:
|
||||
name: flathub
|
||||
name: dummy-remote
|
||||
state: present
|
||||
flatpakrepo_url: https://dl.flathub.org/repo/flathub.flatpakrepo
|
||||
flatpakrepo_url: /tmp/flatpak/repo/dummy-repo.flatpakrepo
|
||||
method: system
|
||||
|
||||
- name: Remove (if necessary) flatpak for testing check mode on absent flatpak
|
||||
flatpak:
|
||||
name: com.dummy.App1
|
||||
remote: dummy-remote
|
||||
state: absent
|
||||
no_dependencies: true
|
||||
|
||||
- name: Add flatpak for testing check mode on present flatpak
|
||||
flatpak:
|
||||
name: org.gnome.Calculator
|
||||
remote: flathub
|
||||
name: com.dummy.App2
|
||||
remote: dummy-remote
|
||||
state: present
|
||||
no_dependencies: true
|
||||
|
||||
- name: Copy HTTP server
|
||||
copy:
|
||||
src: serve.py
|
||||
dest: '{{ remote_tmp_dir }}/serve.py'
|
||||
mode: '0755'
|
||||
|
||||
- name: Start HTTP server
|
||||
command: '{{ remote_tmp_dir }}/serve.py 127.0.0.1 8000 /tmp/flatpak/'
|
||||
async: 120
|
||||
poll: 0
|
||||
register: webserver_status
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue