Skip to content
Snippets Groups Projects
Commit 730a32d6 authored by Jörg Sachse's avatar Jörg Sachse
Browse files

fix: install checkit_tiff and fixit_tiff in separate task so we can skip them in CI

parent fb92e00e
No related branches found
No related tags found
No related merge requests found
Pipeline #3041 failed
...@@ -28,6 +28,18 @@ ...@@ -28,6 +28,18 @@
- "/etc/cit_tiff6_baseline_SLUB.cfg" - "/etc/cit_tiff6_baseline_SLUB.cfg"
notify: restart repairtools notify: restart repairtools
- name: install repairtool dependencies from local Debian repo server
ansible.builtin.apt:
name: [
'{{ item.package_name }}={{ item.version }}',
]
# CAUTION!!! Always use "state: present". Due to version constraints, we do
# not allow just any package version or automatic update
# mechanisms. Autoupdates will make the repair tool crash!
state: present
loop: "{{ tool_versions_local }}"
tags: [apt, no-ci]
- name: install repairtool (package dependencies are encoded in the package) - name: install repairtool (package dependencies are encoded in the package)
ansible.builtin.apt: ansible.builtin.apt:
name: [ name: [
...@@ -37,7 +49,7 @@ ...@@ -37,7 +49,7 @@
# not allow just any package version or automatic update # not allow just any package version or automatic update
# mechanisms. Autoupdates will make the repair tool crash! # mechanisms. Autoupdates will make the repair tool crash!
state: present state: present
loop: "{{ tool_versions }}" loop: "{{ tool_versions_public }}"
tags: [apt] tags: [apt]
- name: configure tool version pinning to avoid automatic nightly upgrades - name: configure tool version pinning to avoid automatic nightly upgrades
......
--- ---
tool_versions: tool_versions_local:
- package_name: "checkit-tiff-upcoming" - package_name: "checkit-tiff-upcoming"
version: "1.4.1" version: "1.4.1"
- package_name: "fixit-tiff" - package_name: "fixit-tiff"
version: "1.3.4" version: "1.3.4"
tool_versions_public:
- package_name: "libtiff-tools" - package_name: "libtiff-tools"
version: "4.2.0-1+deb11u1" version: "4.2.0-1+deb11u1"
- package_name: "libslub-lza-repair-perl" - package_name: "libslub-lza-repair-perl"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment