Skip to content

Commit 1fa0ff3

Browse files
Merge pull request #122 from daltonv/dv_debian11
Debian11 Dependencies
2 parents 918c748 + 21bf466 commit 1fa0ff3

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
tag: "latest"
2222
- os: "debian10"
2323
tag: "latest"
24+
- os: "debian11"
25+
tag: "latest"
2426
- os: "fedora35"
2527
tag: "latest"
2628
- os: "ubuntu18"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Personal Access Token for GitHub account can be created [here](https://github.co
3434
* AMD64, x86_64
3535
## Tested on:
3636

37-
* Debian 9,10
37+
* Debian 9,10,11
3838
* Fedora 35
3939
* Rocky Linux 8
4040
* Ubuntu 18,20

tasks/install_deps.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
# All dependencies derived from https://github.com/actions/runner/blob/main/docs/start/envlinux.md
23
- name: Install dependencies on Debian Stretch
34
package:
45
pkg:
@@ -29,6 +30,21 @@
2930
tags:
3031
- install
3132

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+
3248
- name: Install dependencies on Ubuntu Xenial systems
3349
package:
3450
pkg:

0 commit comments

Comments
 (0)