2020-08-27 14:17:10 +00:00
|
|
|
name: LetsEncrypt
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
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:
|
|
|
|
needs: Ubuntu
|
|
|
|
runs-on: macos-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: 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
|