2021-06-14 03:50:19 +00:00
|
|
|
name: Linux
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
paths:
|
2021-06-20 08:57:58 +00:00
|
|
|
- '*.sh'
|
2021-06-24 16:01:46 +00:00
|
|
|
- '.github/workflows/Linux.yml'
|
2021-06-20 08:57:58 +00:00
|
|
|
|
2021-06-14 03:50:19 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
paths:
|
2021-06-20 08:57:58 +00:00
|
|
|
- '*.sh'
|
2021-06-24 15:30:16 +00:00
|
|
|
- '.github/workflows/Linux.yml'
|
2021-06-20 08:57:58 +00:00
|
|
|
|
2021-06-14 03:50:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Linux:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: ["ubuntu:latest", "debian:latest", "almalinux:latest", "fedora:latest", "centos:latest", "opensuse/leap:latest", "alpine:latest", "oraclelinux:8", "kalilinux/kali", "archlinux:latest", "mageia", "gentoo/stage3-amd64", "clearlinux:latest"]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
TEST_LOCAL: 1
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Clone acmetest
|
|
|
|
run: |
|
|
|
|
cd .. \
|
|
|
|
&& git clone https://github.com/acmesh-official/acmetest.git \
|
|
|
|
&& cp -r acme.sh acmetest/
|
|
|
|
- name: Run acmetest
|
|
|
|
run: |
|
|
|
|
cd ../acmetest \
|
2021-06-14 03:52:45 +00:00
|
|
|
&& ./rundocker.sh testplat ${{ matrix.os }}
|
2021-06-14 03:50:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
|