You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.0 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. name: Linux
  2. on:
  3. push:
  4. branches:
  5. - '*'
  6. paths:
  7. - '**.sh'
  8. - '**.yml'
  9. - '!dnsapi/**'
  10. - '!deploy/**'
  11. - '!notify/**'
  12. pull_request:
  13. branches:
  14. - dev
  15. paths:
  16. - '**.sh'
  17. - '**.yml'
  18. - '!dnsapi/**'
  19. - '!deploy/**'
  20. - '!notify/**'
  21. jobs:
  22. Linux:
  23. strategy:
  24. matrix:
  25. 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"]
  26. runs-on: ubuntu-latest
  27. env:
  28. TEST_LOCAL: 1
  29. steps:
  30. - uses: actions/checkout@v2
  31. - name: Clone acmetest
  32. run: |
  33. cd .. \
  34. && git clone https://github.com/acmesh-official/acmetest.git \
  35. && cp -r acme.sh acmetest/
  36. - name: Run acmetest
  37. run: |
  38. cd ../acmetest \
  39. && ./rundocker.sh testplat ${{ matrix.os }}