Expand what platforms we run updater CI checks on. (#10792)
Austin S. Hemmelgarn committed
Mar 18, 2021 at 13:58 UTC
bbc3eff58eb471164e824976901a2924853ac7d0
1 file changed
+23
-4
.github/workflows/updater.yml
+23
-4
@@ -15,21 +15,40 @@ jobs:
15
fail-fast: false
16
matrix:
17
distro:
18
- - 'debian:10'
19
- - 'ubuntu:20.10'
18
+ - 'alpine:3.12'
19
- 'alpine:3.13'
20
+ - 'archlinux:latest'
21
+ - 'centos:7'
22
- 'centos:8'
23
- 'clearlinux:latest'
24
+ - 'debian:9'
25
+ - 'debian:10'
26
- 'fedora:33'
27
+ - 'fedora:34'
28
+ - 'ubuntu:16.04'
29
+ - 'ubuntu:18.04'
30
+ - 'ubuntu:20.04'
31
+ - 'ubuntu:20.10'
32
+ - 'ubuntu:21.04'
33
include:
34
+ - distro: 'alpine:3.12'
35
+ pre: 'apk add -U bash'
36
- distro: 'alpine:3.13'
37
pre: 'apk add -U bash'
27
- - distro: 'centos:8'
28
- rmjsonc: 'dnf remove -y json-c-devel'
38
+ - distro: 'debian:9'
39
+ pre: 'apt-get update'
40
- distro: 'debian:10'
41
pre: 'apt-get update'
42
+ - distro: 'ubuntu:16.04'
43
+ pre: 'apt-get update'
44
+ - distro: 'ubuntu:18.04'
45
+ pre: 'apt-get update'
46
+ - distro: 'ubuntu:20.04'
47
+ pre: 'apt-get update'
48
- distro: 'ubuntu:20.10'
49
pre: 'apt-get update'
50
+ - distro: 'ubuntu:21.04'
51
+ pre: 'apt-get update'
52
runs-on: ubuntu-latest
53
steps:
54
- name: Git clone repository