neil
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 313 additions and 227 deletions
-
60.github/workflows/FreeBSD.yml
-
215.github/workflows/LetsEncrypt.yml
-
52.github/workflows/MacOS.yml
-
58.github/workflows/Solaris.yml
-
52.github/workflows/Ubuntu.yml
-
70.github/workflows/Windows.yml
-
30README.md
-
3acme.sh
@ -0,0 +1,60 @@ |
|||||
|
name: FreeBSD |
||||
|
on: |
||||
|
push: |
||||
|
branches: |
||||
|
- '*' |
||||
|
paths: |
||||
|
- '*.sh' |
||||
|
- '**.yml' |
||||
|
|
||||
|
pull_request: |
||||
|
branches: |
||||
|
- dev |
||||
|
paths: |
||||
|
- '*.sh' |
||||
|
- '**.yml' |
||||
|
|
||||
|
|
||||
|
jobs: |
||||
|
FreeBSD: |
||||
|
strategy: |
||||
|
matrix: |
||||
|
include: |
||||
|
- TEST_ACME_Server: "" |
||||
|
CA_ECDSA: "" |
||||
|
CA: "" |
||||
|
CA_EMAIL: "" |
||||
|
- TEST_ACME_Server: "https://acme.zerossl.com/v2/DV90" |
||||
|
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" |
||||
|
CA: "ZeroSSL RSA Domain Secure Site CA" |
||||
|
CA_EMAIL: "githubtest@acme.sh" |
||||
|
runs-on: macos-latest |
||||
|
env: |
||||
|
TEST_LOCAL: 1 |
||||
|
ACME_DIRECTORY: ${{ matrix.TEST_ACME_Server }} |
||||
|
CA_ECDSA: ${{ matrix.CA_ECDSA }} |
||||
|
CA: ${{ matrix.CA }} |
||||
|
CA_EMAIL: ${{ matrix.CA_EMAIL }} |
||||
|
steps: |
||||
|
- uses: actions/checkout@v2 |
||||
|
- uses: vmactions/cf-tunnel@v0.0.2 |
||||
|
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 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ |
||||
|
- uses: vmactions/freebsd-vm@v0.1.4 |
||||
|
with: |
||||
|
envs: 'TEST_LOCAL TestingDomain ACME_DIRECTORY CA_ECDSA CA CA_EMAIL' |
||||
|
nat: | |
||||
|
"8080": "80" |
||||
|
prepare: pkg install -y socat curl |
||||
|
usesh: true |
||||
|
run: | |
||||
|
cd ../acmetest \ |
||||
|
&& ./letest.sh |
||||
|
|
||||
|
|
@ -1,215 +0,0 @@ |
|||||
name: LetsEncrypt |
|
||||
on: |
|
||||
push: |
|
||||
branches: |
|
||||
- '*' |
|
||||
paths: |
|
||||
- '*.sh' |
|
||||
- '**.yml' |
|
||||
|
|
||||
pull_request: |
|
||||
branches: |
|
||||
- dev |
|
||||
paths: |
|
||||
- '*.sh' |
|
||||
- '**.yml' |
|
||||
|
|
||||
|
|
||||
jobs: |
|
||||
Ubuntu: |
|
||||
strategy: |
|
||||
matrix: |
|
||||
include: |
|
||||
- TEST_ACME_Server: "" |
|
||||
CA_ECDSA: "" |
|
||||
CA: "" |
|
||||
CA_EMAIL: "" |
|
||||
- TEST_ACME_Server: "https://acme.zerossl.com/v2/DV90" |
|
||||
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" |
|
||||
CA: "ZeroSSL RSA Domain Secure Site CA" |
|
||||
CA_EMAIL: "githubtest@acme.sh" |
|
||||
runs-on: ubuntu-latest |
|
||||
env: |
|
||||
TEST_LOCAL: 1 |
|
||||
ACME_DIRECTORY: ${{ matrix.TEST_ACME_Server }} |
|
||||
CA_ECDSA: ${{ matrix.CA_ECDSA }} |
|
||||
CA: ${{ matrix.CA }} |
|
||||
CA_EMAIL: ${{ matrix.CA_EMAIL }} |
|
||||
steps: |
|
||||
- uses: actions/checkout@v2 |
|
||||
- name: Install tools |
|
||||
run: sudo apt-get install -y socat |
|
||||
- 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 \ |
|
||||
&& sudo --preserve-env ./letest.sh |
|
||||
|
|
||||
MacOS: |
|
||||
strategy: |
|
||||
matrix: |
|
||||
include: |
|
||||
- TEST_ACME_Server: "" |
|
||||
CA_ECDSA: "" |
|
||||
CA: "" |
|
||||
CA_EMAIL: "" |
|
||||
- TEST_ACME_Server: "https://acme.zerossl.com/v2/DV90" |
|
||||
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" |
|
||||
CA: "ZeroSSL RSA Domain Secure Site CA" |
|
||||
CA_EMAIL: "githubtest@acme.sh" |
|
||||
runs-on: macos-latest |
|
||||
env: |
|
||||
TEST_LOCAL: 1 |
|
||||
ACME_DIRECTORY: ${{ matrix.TEST_ACME_Server }} |
|
||||
CA_ECDSA: ${{ matrix.CA_ECDSA }} |
|
||||
CA: ${{ matrix.CA }} |
|
||||
CA_EMAIL: ${{ matrix.CA_EMAIL }} |
|
||||
steps: |
|
||||
- uses: actions/checkout@v2 |
|
||||
- name: Install tools |
|
||||
run: brew install socat |
|
||||
- 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 \ |
|
||||
&& sudo --preserve-env ./letest.sh |
|
||||
|
|
||||
Windows: |
|
||||
strategy: |
|
||||
matrix: |
|
||||
include: |
|
||||
- TEST_ACME_Server: "" |
|
||||
CA_ECDSA: "" |
|
||||
CA: "" |
|
||||
CA_EMAIL: "" |
|
||||
- TEST_ACME_Server: "https://acme.zerossl.com/v2/DV90" |
|
||||
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" |
|
||||
CA: "ZeroSSL RSA Domain Secure Site CA" |
|
||||
CA_EMAIL: "githubtest@acme.sh" |
|
||||
runs-on: windows-latest |
|
||||
env: |
|
||||
ACME_DIRECTORY: ${{ matrix.TEST_ACME_Server }} |
|
||||
CA_ECDSA: ${{ matrix.CA_ECDSA }} |
|
||||
CA: ${{ matrix.CA }} |
|
||||
CA_EMAIL: ${{ matrix.CA_EMAIL }} |
|
||||
TEST_LOCAL: 1 |
|
||||
#The 80 port is used by Windows server, we have to use a custom port, tunnel will also use this port. |
|
||||
Le_HTTPPort: 8888 |
|
||||
steps: |
|
||||
- name: Set git to use LF |
|
||||
run: | |
|
||||
git config --global core.autocrlf false |
|
||||
- uses: actions/checkout@v2 |
|
||||
- name: Install cygwin base packages with chocolatey |
|
||||
run: | |
|
||||
choco config get cacheLocation |
|
||||
choco install --no-progress cygwin |
|
||||
shell: cmd |
|
||||
- name: Install cygwin additional packages |
|
||||
run: | |
|
||||
C:\tools\cygwin\cygwinsetup.exe -qgnNdO -R C:/tools/cygwin -s http://mirrors.kernel.org/sourceware/cygwin/ -P socat,curl,cron,unzip,git |
|
||||
shell: cmd |
|
||||
- name: Set ENV |
|
||||
shell: cmd |
|
||||
run: | |
|
||||
echo PATH=C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin >> %GITHUB_ENV% |
|
||||
- name: Check ENV |
|
||||
shell: cmd |
|
||||
run: | |
|
||||
echo "PATH=%PATH%" |
|
||||
- name: Clone acmetest |
|
||||
shell: cmd |
|
||||
run: cd .. && git clone https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ |
|
||||
- name: Run acmetest |
|
||||
shell: cmd |
|
||||
run: cd ../acmetest && bash.exe -c ./letest.sh |
|
||||
|
|
||||
FreeBSD: |
|
||||
strategy: |
|
||||
matrix: |
|
||||
include: |
|
||||
- TEST_ACME_Server: "" |
|
||||
CA_ECDSA: "" |
|
||||
CA: "" |
|
||||
CA_EMAIL: "" |
|
||||
- TEST_ACME_Server: "https://acme.zerossl.com/v2/DV90" |
|
||||
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" |
|
||||
CA: "ZeroSSL RSA Domain Secure Site CA" |
|
||||
CA_EMAIL: "githubtest@acme.sh" |
|
||||
runs-on: macos-latest |
|
||||
env: |
|
||||
TEST_LOCAL: 1 |
|
||||
ACME_DIRECTORY: ${{ matrix.TEST_ACME_Server }} |
|
||||
CA_ECDSA: ${{ matrix.CA_ECDSA }} |
|
||||
CA: ${{ matrix.CA }} |
|
||||
CA_EMAIL: ${{ matrix.CA_EMAIL }} |
|
||||
steps: |
|
||||
- uses: actions/checkout@v2 |
|
||||
- uses: vmactions/cf-tunnel@v0.0.2 |
|
||||
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 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ |
|
||||
- uses: vmactions/freebsd-vm@v0.1.4 |
|
||||
with: |
|
||||
envs: 'TEST_LOCAL TestingDomain ACME_DIRECTORY CA_ECDSA CA CA_EMAIL' |
|
||||
nat: | |
|
||||
"8080": "80" |
|
||||
prepare: pkg install -y socat curl |
|
||||
usesh: true |
|
||||
run: | |
|
||||
cd ../acmetest \ |
|
||||
&& ./letest.sh |
|
||||
|
|
||||
Solaris: |
|
||||
strategy: |
|
||||
matrix: |
|
||||
include: |
|
||||
- TEST_ACME_Server: "" |
|
||||
CA_ECDSA: "" |
|
||||
CA: "" |
|
||||
CA_EMAIL: "" |
|
||||
- TEST_ACME_Server: "https://acme.zerossl.com/v2/DV90" |
|
||||
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" |
|
||||
CA: "ZeroSSL RSA Domain Secure Site CA" |
|
||||
CA_EMAIL: "githubtest@acme.sh" |
|
||||
runs-on: macos-latest |
|
||||
env: |
|
||||
TEST_LOCAL: 1 |
|
||||
ACME_DIRECTORY: ${{ matrix.TEST_ACME_Server }} |
|
||||
CA_ECDSA: ${{ matrix.CA_ECDSA }} |
|
||||
CA: ${{ matrix.CA }} |
|
||||
CA_EMAIL: ${{ matrix.CA_EMAIL }} |
|
||||
steps: |
|
||||
- uses: actions/checkout@v2 |
|
||||
- uses: vmactions/cf-tunnel@v0.0.2 |
|
||||
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 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ |
|
||||
- uses: vmactions/solaris-vm@v0.0.3 |
|
||||
with: |
|
||||
envs: 'TEST_LOCAL TestingDomain ACME_DIRECTORY CA_ECDSA CA CA_EMAIL' |
|
||||
nat: | |
|
||||
"8080": "80" |
|
||||
prepare: pkgutil -y -i socat curl |
|
||||
run: | |
|
||||
cd ../acmetest \ |
|
||||
&& ./letest.sh |
|
||||
|
|
@ -0,0 +1,52 @@ |
|||||
|
name: MacOS |
||||
|
on: |
||||
|
push: |
||||
|
branches: |
||||
|
- '*' |
||||
|
paths: |
||||
|
- '*.sh' |
||||
|
- '**.yml' |
||||
|
|
||||
|
pull_request: |
||||
|
branches: |
||||
|
- dev |
||||
|
paths: |
||||
|
- '*.sh' |
||||
|
- '**.yml' |
||||
|
|
||||
|
|
||||
|
jobs: |
||||
|
MacOS: |
||||
|
strategy: |
||||
|
matrix: |
||||
|
include: |
||||
|
- TEST_ACME_Server: "" |
||||
|
CA_ECDSA: "" |
||||
|
CA: "" |
||||
|
CA_EMAIL: "" |
||||
|
- TEST_ACME_Server: "https://acme.zerossl.com/v2/DV90" |
||||
|
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" |
||||
|
CA: "ZeroSSL RSA Domain Secure Site CA" |
||||
|
CA_EMAIL: "githubtest@acme.sh" |
||||
|
runs-on: macos-latest |
||||
|
env: |
||||
|
TEST_LOCAL: 1 |
||||
|
ACME_DIRECTORY: ${{ matrix.TEST_ACME_Server }} |
||||
|
CA_ECDSA: ${{ matrix.CA_ECDSA }} |
||||
|
CA: ${{ matrix.CA }} |
||||
|
CA_EMAIL: ${{ matrix.CA_EMAIL }} |
||||
|
steps: |
||||
|
- uses: actions/checkout@v2 |
||||
|
- name: Install tools |
||||
|
run: brew install socat |
||||
|
- 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 \ |
||||
|
&& sudo --preserve-env ./letest.sh |
||||
|
|
||||
|
|
@ -0,0 +1,58 @@ |
|||||
|
name: Solaris |
||||
|
on: |
||||
|
push: |
||||
|
branches: |
||||
|
- '*' |
||||
|
paths: |
||||
|
- '*.sh' |
||||
|
- '**.yml' |
||||
|
|
||||
|
pull_request: |
||||
|
branches: |
||||
|
- dev |
||||
|
paths: |
||||
|
- '*.sh' |
||||
|
- '**.yml' |
||||
|
|
||||
|
|
||||
|
jobs: |
||||
|
Solaris: |
||||
|
strategy: |
||||
|
matrix: |
||||
|
include: |
||||
|
- TEST_ACME_Server: "" |
||||
|
CA_ECDSA: "" |
||||
|
CA: "" |
||||
|
CA_EMAIL: "" |
||||
|
- TEST_ACME_Server: "https://acme.zerossl.com/v2/DV90" |
||||
|
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" |
||||
|
CA: "ZeroSSL RSA Domain Secure Site CA" |
||||
|
CA_EMAIL: "githubtest@acme.sh" |
||||
|
runs-on: macos-latest |
||||
|
env: |
||||
|
TEST_LOCAL: 1 |
||||
|
ACME_DIRECTORY: ${{ matrix.TEST_ACME_Server }} |
||||
|
CA_ECDSA: ${{ matrix.CA_ECDSA }} |
||||
|
CA: ${{ matrix.CA }} |
||||
|
CA_EMAIL: ${{ matrix.CA_EMAIL }} |
||||
|
steps: |
||||
|
- uses: actions/checkout@v2 |
||||
|
- uses: vmactions/cf-tunnel@v0.0.2 |
||||
|
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 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ |
||||
|
- uses: vmactions/solaris-vm@v0.0.3 |
||||
|
with: |
||||
|
envs: 'TEST_LOCAL TestingDomain ACME_DIRECTORY CA_ECDSA CA CA_EMAIL' |
||||
|
nat: | |
||||
|
"8080": "80" |
||||
|
prepare: pkgutil -y -i socat curl |
||||
|
run: | |
||||
|
cd ../acmetest \ |
||||
|
&& ./letest.sh |
||||
|
|
@ -0,0 +1,52 @@ |
|||||
|
name: Ubuntu |
||||
|
on: |
||||
|
push: |
||||
|
branches: |
||||
|
- '*' |
||||
|
paths: |
||||
|
- '*.sh' |
||||
|
- '**.yml' |
||||
|
|
||||
|
pull_request: |
||||
|
branches: |
||||
|
- dev |
||||
|
paths: |
||||
|
- '*.sh' |
||||
|
- '**.yml' |
||||
|
|
||||
|
|
||||
|
jobs: |
||||
|
Ubuntu: |
||||
|
strategy: |
||||
|
matrix: |
||||
|
include: |
||||
|
- TEST_ACME_Server: "" |
||||
|
CA_ECDSA: "" |
||||
|
CA: "" |
||||
|
CA_EMAIL: "" |
||||
|
- TEST_ACME_Server: "https://acme.zerossl.com/v2/DV90" |
||||
|
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" |
||||
|
CA: "ZeroSSL RSA Domain Secure Site CA" |
||||
|
CA_EMAIL: "githubtest@acme.sh" |
||||
|
runs-on: ubuntu-latest |
||||
|
env: |
||||
|
TEST_LOCAL: 1 |
||||
|
ACME_DIRECTORY: ${{ matrix.TEST_ACME_Server }} |
||||
|
CA_ECDSA: ${{ matrix.CA_ECDSA }} |
||||
|
CA: ${{ matrix.CA }} |
||||
|
CA_EMAIL: ${{ matrix.CA_EMAIL }} |
||||
|
steps: |
||||
|
- uses: actions/checkout@v2 |
||||
|
- name: Install tools |
||||
|
run: sudo apt-get install -y socat |
||||
|
- 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 \ |
||||
|
&& sudo --preserve-env ./letest.sh |
||||
|
|
||||
|
|
@ -0,0 +1,70 @@ |
|||||
|
name: Windows |
||||
|
on: |
||||
|
push: |
||||
|
branches: |
||||
|
- '*' |
||||
|
paths: |
||||
|
- '*.sh' |
||||
|
- '**.yml' |
||||
|
|
||||
|
pull_request: |
||||
|
branches: |
||||
|
- dev |
||||
|
paths: |
||||
|
- '*.sh' |
||||
|
- '**.yml' |
||||
|
|
||||
|
|
||||
|
jobs: |
||||
|
Windows: |
||||
|
strategy: |
||||
|
matrix: |
||||
|
include: |
||||
|
- TEST_ACME_Server: "" |
||||
|
CA_ECDSA: "" |
||||
|
CA: "" |
||||
|
CA_EMAIL: "" |
||||
|
- TEST_ACME_Server: "https://acme.zerossl.com/v2/DV90" |
||||
|
CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA" |
||||
|
CA: "ZeroSSL RSA Domain Secure Site CA" |
||||
|
CA_EMAIL: "githubtest@acme.sh" |
||||
|
runs-on: windows-latest |
||||
|
env: |
||||
|
ACME_DIRECTORY: ${{ matrix.TEST_ACME_Server }} |
||||
|
CA_ECDSA: ${{ matrix.CA_ECDSA }} |
||||
|
CA: ${{ matrix.CA }} |
||||
|
CA_EMAIL: ${{ matrix.CA_EMAIL }} |
||||
|
TEST_LOCAL: 1 |
||||
|
#The 80 port is used by Windows server, we have to use a custom port, tunnel will also use this port. |
||||
|
Le_HTTPPort: 8888 |
||||
|
steps: |
||||
|
- name: Set git to use LF |
||||
|
run: | |
||||
|
git config --global core.autocrlf false |
||||
|
- uses: actions/checkout@v2 |
||||
|
- name: Install cygwin base packages with chocolatey |
||||
|
run: | |
||||
|
choco config get cacheLocation |
||||
|
choco install --no-progress cygwin |
||||
|
shell: cmd |
||||
|
- name: Install cygwin additional packages |
||||
|
run: | |
||||
|
C:\tools\cygwin\cygwinsetup.exe -qgnNdO -R C:/tools/cygwin -s http://mirrors.kernel.org/sourceware/cygwin/ -P socat,curl,cron,unzip,git |
||||
|
shell: cmd |
||||
|
- name: Set ENV |
||||
|
shell: cmd |
||||
|
run: | |
||||
|
echo PATH=C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin >> %GITHUB_ENV% |
||||
|
- name: Check ENV |
||||
|
shell: cmd |
||||
|
run: | |
||||
|
echo "PATH=%PATH%" |
||||
|
- name: Clone acmetest |
||||
|
shell: cmd |
||||
|
run: cd .. && git clone https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ |
||||
|
- name: Run acmetest |
||||
|
shell: cmd |
||||
|
run: cd ../acmetest && bash.exe -c ./letest.sh |
||||
|
|
||||
|
|
||||
|
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue