forked from acmesh-official/acme.sh
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
658 additions
and
658 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
<!-- | ||
我很忙, 每天可能只有 几秒钟 时间看你的 issue, 如果不按照我的要求写 issue, 你可能不会得到任何回复, 石沉大海. | ||
请确保已经更新到最新的代码, 然后贴上来 `--debug 2` 的调试输出. 没有调试信息. 我做不了什么. | ||
如何调试 https://github.com/acmesh-official/acme.sh/wiki/How-to-debug-acme.sh | ||
If it is a bug report: | ||
- make sure you are able to repro it on the latest released version. | ||
You can install the latest version by: `acme.sh --upgrade` | ||
- Search the existing issues. | ||
- Refer to the [WIKI](https://wiki.acme.sh). | ||
- Debug info [Debug](https://github.com/acmesh-official/acme.sh/wiki/How-to-debug-acme.sh). | ||
--> | ||
|
||
Steps to reproduce | ||
------------------ | ||
|
||
Debug log | ||
----------------- | ||
|
||
``` | ||
acme.sh --issue ..... --debug 2 | ||
``` | ||
|
||
|
||
<!-- | ||
我很忙, 每天可能只有 几秒钟 时间看你的 issue, 如果不按照我的要求写 issue, 你可能不会得到任何回复, 石沉大海. | ||
请确保已经更新到最新的代码, 然后贴上来 `--debug 2` 的调试输出. 没有调试信息. 我做不了什么. | ||
如何调试 https://github.com/acmesh-official/acme.sh/wiki/How-to-debug-acme.sh | ||
If it is a bug report: | ||
- make sure you are able to repro it on the latest released version. | ||
You can install the latest version by: `acme.sh --upgrade` | ||
- Search the existing issues. | ||
- Refer to the [WIKI](https://wiki.acme.sh). | ||
- Debug info [Debug](https://github.com/acmesh-official/acme.sh/wiki/How-to-debug-acme.sh). | ||
--> | ||
|
||
Steps to reproduce | ||
------------------ | ||
|
||
Debug log | ||
----------------- | ||
|
||
``` | ||
acme.sh --issue ..... --debug 2 | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<!-- | ||
1. Do NOT send pull request to `master` branch. | ||
Please send to `dev` branch instead. | ||
Any PR to `master` branch will NOT be merged. | ||
2. For dns api support, read this guide first: https://github.com/acmesh-official/acme.sh/wiki/DNS-API-Dev-Guide | ||
You will NOT get any review without passing this guide. You also need to fix the CI errors. | ||
<!-- | ||
1. Do NOT send pull request to `master` branch. | ||
Please send to `dev` branch instead. | ||
Any PR to `master` branch will NOT be merged. | ||
2. For dns api support, read this guide first: https://github.com/acmesh-official/acme.sh/wiki/DNS-API-Dev-Guide | ||
You will NOT get any review without passing this guide. You also need to fix the CI errors. | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,76 @@ | ||
name: FreeBSD | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
paths: | ||
- '*.sh' | ||
- '.github/workflows/FreeBSD.yml' | ||
|
||
pull_request: | ||
branches: | ||
- dev | ||
paths: | ||
- '*.sh' | ||
- '.github/workflows/FreeBSD.yml' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
|
||
|
||
jobs: | ||
FreeBSD: | ||
strategy: | ||
matrix: | ||
include: | ||
- TEST_ACME_Server: "LetsEncrypt.org_test" | ||
CA_ECDSA: "" | ||
CA: "" | ||
CA_EMAIL: "" | ||
TEST_PREFERRED_CHAIN: (STAGING) Pretend Pear X1 | ||
- TEST_ACME_Server: "LetsEncrypt.org_test" | ||
CA_ECDSA: "" | ||
CA: "" | ||
CA_EMAIL: "" | ||
TEST_PREFERRED_CHAIN: (STAGING) Pretend Pear X1 | ||
ACME_USE_WGET: 1 | ||
#- TEST_ACME_Server: "ZeroSSL.com" | ||
# CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" | ||
# CA: "ZeroSSL RSA Domain Secure Site CA" | ||
# CA_EMAIL: "[email protected]" | ||
# TEST_PREFERRED_CHAIN: "" | ||
runs-on: ubuntu-latest | ||
env: | ||
TEST_LOCAL: 1 | ||
TEST_ACME_Server: ${{ matrix.TEST_ACME_Server }} | ||
CA_ECDSA: ${{ matrix.CA_ECDSA }} | ||
CA: ${{ matrix.CA }} | ||
CA_EMAIL: ${{ matrix.CA_EMAIL }} | ||
TEST_PREFERRED_CHAIN: ${{ matrix.TEST_PREFERRED_CHAIN }} | ||
ACME_USE_WGET: ${{ matrix.ACME_USE_WGET }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: vmactions/cf-tunnel@v0 | ||
id: tunnel | ||
with: | ||
protocol: http | ||
port: 8080 | ||
- name: Set envs | ||
run: echo "TestingDomain=${{steps.tunnel.outputs.server}}" >> $GITHUB_ENV | ||
- name: Clone acmetest | ||
run: cd .. && git clone --depth=1 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ | ||
- uses: vmactions/freebsd-vm@v1 | ||
with: | ||
envs: 'TEST_LOCAL TestingDomain TEST_ACME_Server CA_ECDSA CA CA_EMAIL TEST_PREFERRED_CHAIN ACME_USE_WGET' | ||
nat: | | ||
"8080": "80" | ||
prepare: pkg install -y socat curl wget | ||
usesh: true | ||
copyback: false | ||
run: | | ||
cd ../acmetest \ | ||
&& ./letest.sh | ||
name: FreeBSD | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
paths: | ||
- '*.sh' | ||
- '.github/workflows/FreeBSD.yml' | ||
|
||
pull_request: | ||
branches: | ||
- dev | ||
paths: | ||
- '*.sh' | ||
- '.github/workflows/FreeBSD.yml' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
|
||
|
||
jobs: | ||
FreeBSD: | ||
strategy: | ||
matrix: | ||
include: | ||
- TEST_ACME_Server: "LetsEncrypt.org_test" | ||
CA_ECDSA: "" | ||
CA: "" | ||
CA_EMAIL: "" | ||
TEST_PREFERRED_CHAIN: (STAGING) Pretend Pear X1 | ||
- TEST_ACME_Server: "LetsEncrypt.org_test" | ||
CA_ECDSA: "" | ||
CA: "" | ||
CA_EMAIL: "" | ||
TEST_PREFERRED_CHAIN: (STAGING) Pretend Pear X1 | ||
ACME_USE_WGET: 1 | ||
#- TEST_ACME_Server: "ZeroSSL.com" | ||
# CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" | ||
# CA: "ZeroSSL RSA Domain Secure Site CA" | ||
# CA_EMAIL: "[email protected]" | ||
# TEST_PREFERRED_CHAIN: "" | ||
runs-on: ubuntu-latest | ||
env: | ||
TEST_LOCAL: 1 | ||
TEST_ACME_Server: ${{ matrix.TEST_ACME_Server }} | ||
CA_ECDSA: ${{ matrix.CA_ECDSA }} | ||
CA: ${{ matrix.CA }} | ||
CA_EMAIL: ${{ matrix.CA_EMAIL }} | ||
TEST_PREFERRED_CHAIN: ${{ matrix.TEST_PREFERRED_CHAIN }} | ||
ACME_USE_WGET: ${{ matrix.ACME_USE_WGET }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: vmactions/cf-tunnel@v0 | ||
id: tunnel | ||
with: | ||
protocol: http | ||
port: 8080 | ||
- name: Set envs | ||
run: echo "TestingDomain=${{steps.tunnel.outputs.server}}" >> $GITHUB_ENV | ||
- name: Clone acmetest | ||
run: cd .. && git clone --depth=1 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ | ||
- uses: vmactions/freebsd-vm@v1 | ||
with: | ||
envs: 'TEST_LOCAL TestingDomain TEST_ACME_Server CA_ECDSA CA CA_EMAIL TEST_PREFERRED_CHAIN ACME_USE_WGET' | ||
nat: | | ||
"8080": "80" | ||
prepare: pkg install -y socat curl wget | ||
usesh: true | ||
copyback: false | ||
run: | | ||
cd ../acmetest \ | ||
&& ./letest.sh | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
name: Linux | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
paths: | ||
- '*.sh' | ||
- '.github/workflows/Linux.yml' | ||
|
||
pull_request: | ||
branches: | ||
- dev | ||
paths: | ||
- '*.sh' | ||
- '.github/workflows/Linux.yml' | ||
|
||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
|
||
|
||
|
||
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"] | ||
runs-on: ubuntu-latest | ||
env: | ||
TEST_LOCAL: 1 | ||
TEST_PREFERRED_CHAIN: (STAGING) Pretend Pear X1 | ||
TEST_ACME_Server: "LetsEncrypt.org_test" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Clone acmetest | ||
run: | | ||
cd .. \ | ||
&& git clone --depth=1 https://github.com/acmesh-official/acmetest.git \ | ||
&& cp -r acme.sh acmetest/ | ||
- name: Run acmetest | ||
run: | | ||
cd ../acmetest \ | ||
&& ./rundocker.sh testplat ${{ matrix.os }} | ||
name: Linux | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
paths: | ||
- '*.sh' | ||
- '.github/workflows/Linux.yml' | ||
|
||
pull_request: | ||
branches: | ||
- dev | ||
paths: | ||
- '*.sh' | ||
- '.github/workflows/Linux.yml' | ||
|
||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
|
||
|
||
|
||
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"] | ||
runs-on: ubuntu-latest | ||
env: | ||
TEST_LOCAL: 1 | ||
TEST_PREFERRED_CHAIN: (STAGING) Pretend Pear X1 | ||
TEST_ACME_Server: "LetsEncrypt.org_test" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Clone acmetest | ||
run: | | ||
cd .. \ | ||
&& git clone --depth=1 https://github.com/acmesh-official/acmetest.git \ | ||
&& cp -r acme.sh acmetest/ | ||
- name: Run acmetest | ||
run: | | ||
cd ../acmetest \ | ||
&& ./rundocker.sh testplat ${{ matrix.os }} | ||
Oops, something went wrong.