]> git.proxmox.com Git - mirror_acme.sh.git/blob - .github/workflows/Linux.yml
upgrade actions/checkout@v3
[mirror_acme.sh.git] / .github / workflows / Linux.yml
1 name: Linux
2 on:
3 push:
4 branches:
5 - '*'
6 paths:
7 - '*.sh'
8 - '.github/workflows/Linux.yml'
9
10 pull_request:
11 branches:
12 - dev
13 paths:
14 - '*.sh'
15 - '.github/workflows/Linux.yml'
16
17
18 concurrency:
19 group: ${{ github.workflow }}-${{ github.ref }}
20 cancel-in-progress: true
21
22
23
24
25 jobs:
26 Linux:
27 strategy:
28 matrix:
29 os: ["ubuntu:latest", "debian:latest", "almalinux:latest", "fedora:latest", "centos:7", "opensuse/leap:latest", "alpine:latest", "oraclelinux:8", "kalilinux/kali", "archlinux:latest", "mageia", "gentoo/stage3"]
30 runs-on: ubuntu-latest
31 env:
32 TEST_LOCAL: 1
33 TEST_PREFERRED_CHAIN: (STAGING) Pretend Pear X1
34 TEST_ACME_Server: "LetsEncrypt.org_test"
35 steps:
36 - uses: actions/checkout@v3
37 - name: Clone acmetest
38 run: |
39 cd .. \
40 && git clone --depth=1 https://github.com/acmesh-official/acmetest.git \
41 && cp -r acme.sh acmetest/
42 - name: Run acmetest
43 run: |
44 cd ../acmetest \
45 && ./rundocker.sh testplat ${{ matrix.os }}
46
47
48