2020-08-27 14:17:10 +00:00
|
|
|
name: LetsEncrypt
|
2020-08-28 17:32:10 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
2020-08-29 05:14:28 +00:00
|
|
|
paths:
|
|
|
|
- '**.sh'
|
2020-08-28 17:32:10 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- dev
|
2020-08-29 05:14:28 +00:00
|
|
|
paths:
|
|
|
|
- '**.sh'
|
|
|
|
|
2020-08-27 14:17:10 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
Ubuntu:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
|
2020-08-28 01:32:38 +00:00
|
|
|
TEST_LOCAL: 1
|
2020-08-27 14:17:10 +00:00
|
|
|
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
|
2020-08-28 01:32:38 +00:00
|
|
|
run: cd ../acmetest && sudo TEST_LOCAL="$TEST_LOCAL" NGROK_TOKEN="$NGROK_TOKEN" ./letest.sh
|
2020-08-27 14:17:10 +00:00
|
|
|
|
|
|
|
MacOS:
|
|
|
|
runs-on: macos-latest
|
2020-08-28 15:18:05 +00:00
|
|
|
needs: Ubuntu
|
2020-08-27 14:17:10 +00:00
|
|
|
env:
|
|
|
|
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
|
2020-08-28 01:32:38 +00:00
|
|
|
TEST_LOCAL: 1
|
2020-08-27 14:17:10 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install tools
|
|
|
|
run: brew update && 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
|
2020-08-28 01:32:38 +00:00
|
|
|
run: cd ../acmetest && sudo TEST_LOCAL="$TEST_LOCAL" NGROK_TOKEN="$NGROK_TOKEN" ./letest.sh
|
2020-08-28 15:18:05 +00:00
|
|
|
|
|
|
|
Windows:
|
|
|
|
runs-on: windows-latest
|
|
|
|
needs: MacOS
|
|
|
|
env:
|
|
|
|
NGROK_TOKEN : ${{ secrets.NGROK_TOKEN }}
|
|
|
|
TEST_LOCAL: 1
|
2020-08-29 01:54:02 +00:00
|
|
|
#The 80 port is used by Windows server, we have to use a custom port, ngrok will also use this port.
|
2020-08-28 15:54:39 +00:00
|
|
|
Le_HTTPPort: 8888
|
2020-08-28 15:18:05 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Install cygwin base packages with chocolatey
|
|
|
|
run: |
|
|
|
|
choco config get cacheLocation
|
2020-08-28 15:31:18 +00:00
|
|
|
choco install --no-progress cygwin
|
2020-08-28 15:18:05 +00:00
|
|
|
shell: cmd
|
|
|
|
- name: Install cygwin additional packages
|
|
|
|
run: |
|
2020-08-28 15:31:18 +00:00
|
|
|
C:\tools\cygwin\cygwinsetup.exe -qgnNdO -R C:/tools/cygwin -s http://mirrors.kernel.org/sourceware/cygwin/ -P socat,curl,cron,unzip,git
|
2020-08-28 15:18:05 +00:00
|
|
|
shell: cmd
|
|
|
|
- name: Set ENV
|
|
|
|
run: |
|
|
|
|
echo '::set-env name=PATH::C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin'
|
|
|
|
- name: Clone acmetest
|
|
|
|
shell: cmd
|
2020-08-28 16:35:33 +00:00
|
|
|
run: cd .. && git clone https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/ && sed -i 's/\r//g' acmetest/acme.sh/acme.sh
|
2020-08-28 15:18:05 +00:00
|
|
|
- name: Run acmetest
|
|
|
|
shell: cmd
|
|
|
|
run: cd ../acmetest && bash.exe -c ./letest.sh
|
|
|
|
|
|
|
|
|