2021-06-21 23:48:37 +00:00
|
|
|
name: Solaris
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
paths:
|
|
|
|
- '*.sh'
|
2021-06-24 16:01:46 +00:00
|
|
|
- '.github/workflows/Solaris.yml'
|
2021-06-21 23:48:37 +00:00
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
paths:
|
|
|
|
- '*.sh'
|
2021-06-24 15:30:16 +00:00
|
|
|
- '.github/workflows/Solaris.yml'
|
2021-06-21 23:48:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Solaris:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
2021-06-25 15:20:40 +00:00
|
|
|
- TEST_ACME_Server: "LetsEncrypt.org_test"
|
2021-06-21 23:48:37 +00:00
|
|
|
CA_ECDSA: ""
|
|
|
|
CA: ""
|
|
|
|
CA_EMAIL: ""
|
2021-06-25 15:20:40 +00:00
|
|
|
- TEST_ACME_Server: "ZeroSSL.com"
|
2021-06-21 23:48:37 +00:00
|
|
|
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
|
2021-06-25 15:20:40 +00:00
|
|
|
TEST_ACME_Server: ${{ matrix.TEST_ACME_Server }}
|
2021-06-21 23:48:37 +00:00
|
|
|
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:
|
2021-06-25 15:20:40 +00:00
|
|
|
envs: 'TEST_LOCAL TestingDomain TEST_ACME_Server CA_ECDSA CA CA_EMAIL'
|
2021-06-21 23:48:37 +00:00
|
|
|
nat: |
|
|
|
|
"8080": "80"
|
|
|
|
prepare: pkgutil -y -i socat curl
|
|
|
|
run: |
|
|
|
|
cd ../acmetest \
|
|
|
|
&& ./letest.sh
|
|
|
|
|