We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15ebd69 commit a613012Copy full SHA for a613012
tasks/install_deps.yml
@@ -1,4 +1,5 @@
1
---
2
+# All dependencies derived from https://github.com/actions/runner/blob/main/docs/start/envlinux.md
3
- name: Install dependencies on Debian Stretch
4
package:
5
pkg:
@@ -29,6 +30,21 @@
29
30
tags:
31
- install
32
33
+- name: Install dependencies on Debian Bullseye
34
+ package:
35
+ pkg:
36
+ - acl
37
+ - liblttng-ust0
38
+ - libkrb5-3
39
+ - zlib1g
40
+ - libssl1.1
41
+ - libicu67
42
+ state: present
43
+ update_cache: yes
44
+ when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "11")
45
+ tags:
46
+ - install
47
+
48
- name: Install dependencies on Ubuntu Xenial systems
49
50
0 commit comments