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

49 lines
1.1 KiB
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
3 years ago
concurrency:
2 years ago
group: ${{ github.workflow }}-${{ github.ref }}
3 years ago
cancel-in-progress: true
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
9 months ago
TEST_PREFERRED_CHAIN: (STAGING)
3 years ago
TEST_ACME_Server: "LetsEncrypt.org_test"
4 years ago
steps:
1 year ago
- uses: actions/checkout@v4
4 years ago
- name: Clone acmetest
run: |
cd .. \
&& git clone --depth=1 https://github.com/acmesh-official/acmetest.git \
4 years ago
&& cp -r acme.sh acmetest/
- name: Run acmetest
run: |
cd ../acmetest \
4 years ago
&& ./rundocker.sh testplat ${{ matrix.os }}
4 years ago