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

test: add ubuntu 24 and 22 #179

Merged
merged 6 commits into from
Sep 12, 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
9 changes: 5 additions & 4 deletions .github/workflows/code_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ jobs:
- debian11
- debian12
# https://github.com/geerlingguy/docker-ubuntu2204-ansible/issues/6
# - ubuntu2204
- ubuntu2004
- ubuntu2204
- ubuntu2404
# - ubuntu2004
molecule_scenario: [
alternative_installation,
check_fails,
Expand All @@ -39,8 +40,8 @@ jobs:
]
include:
- molecule_scenario: default
ansible_version_minimum: "2.12"
ansible_package_version_minimum: "5.0.1"
ansible_version_minimum: "2.15"
ansible_package_version_minimum: "8.0.0"

name: Molecule Test
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Installs and configures paperless-ngx EDMS.

### 1.1. <a name='Ansible'></a>Ansible

`ansible_version_minimum: "2.12"` or newer is required.
`ansible_version_minimum: "2.15"` or newer is required.

The following Ansible collections need to be installed (via `ansible-galaxy collection install`)
* community.general
Expand Down
2 changes: 1 addition & 1 deletion meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ galaxy_info:

license: MIT

min_ansible_version: "2.12"
min_ansible_version: "2.15"

platforms:
- name: Debian
Expand Down
4 changes: 2 additions & 2 deletions molecule/alternative_installation/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
- base_dependencies
- paperless_ngx
vars:
paperless_ngx_conf_usermap_uid: 1001
paperless_ngx_conf_usermap_gid: 1001
paperless_ngx_conf_usermap_uid: 9001
paperless_ngx_conf_usermap_gid: 9001
paperless_ngx_conf_ocr_languages: [tur, ces]
paperless_ngx_conf_enable_flower: true
paperless_ngx_conf_port: 8001
Expand Down
1 change: 0 additions & 1 deletion tasks/base_dependencies/repo_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
- libpq-dev
- libmagic-dev
- mariadb-client
- mime-support
- libzbar0
- poppler-utils
- pkg-config
Expand Down
2 changes: 1 addition & 1 deletion vars/main.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# Vars that shouldn't be altered by the user
## Vars without reference to the paperless-ngx docs
ansible_version_minimum: "2.12"
ansible_version_minimum: "2.15"
ansible_required_collections:
# [a-z_]+\.[a-z_]+(\.[a-z_]+)?:
- community.general
Expand Down
Loading