You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
acme.sh/.github/workflows/Linux.yml

43 lines
1019 B
YAML

4 years ago
name: Linux
on:
push:
branches:
- '*'
paths:
4 years ago
- '*.sh'
4 years ago
- '.github/workflows/Linux.yml'
4 years ago
4 years ago
pull_request:
branches:
- dev
paths:
4 years ago
- '*.sh'
4 years ago
- '.github/workflows/Linux.yml'
4 years ago
4 years ago
jobs:
Linux:
strategy:
matrix:
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"]
4 years ago
runs-on: ubuntu-latest
env:
TEST_LOCAL: 1
TEST_PREFERRED_CHAIN: (STAGING) Pretend Pear X1
3 years ago
TEST_ACME_Server: "LetsEncrypt.org_test"
4 years ago
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 \
4 years ago
&& ./rundocker.sh testplat ${{ matrix.os }}
4 years ago