2021-06-21 23:48:37 +00:00
|
|
|
name: Windows
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
paths:
|
|
|
|
- '*.sh'
|
2021-06-24 16:01:46 +00:00
|
|
|
- '.github/workflows/Windows.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/Windows.yml'
|
2021-06-21 23:48:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Windows:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
2021-06-25 14:29:40 +00:00
|
|
|
- TEST_ACME_Server: "LetsEncrypt.org_test"
|
2021-06-21 23:48:37 +00:00
|
|
|
CA_ECDSA: ""
|
|
|
|
CA: ""
|
|
|
|
CA_EMAIL: ""
|
2021-10-12 16:28:14 +00:00
|
|
|
TEST_PREFERRED_CHAIN: (STAGING) Pretend Pear X1
|
2022-04-10 11:42:49 +00:00
|
|
|
#- TEST_ACME_Server: "ZeroSSL.com"
|
|
|
|
# CA_ECDSA: "ZeroSSL ECC Domain Secure Site CA"
|
|
|
|
# CA: "ZeroSSL RSA Domain Secure Site CA"
|
|
|
|
# CA_EMAIL: "githubtest@acme.sh"
|
|
|
|
# TEST_PREFERRED_CHAIN: ""
|
2021-06-21 23:48:37 +00:00
|
|
|
runs-on: windows-latest
|
|
|
|
env:
|
2021-06-25 13:28:20 +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 }}
|
|
|
|
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
|
2021-10-12 16:03:12 +00:00
|
|
|
TEST_PREFERRED_CHAIN: ${{ matrix.TEST_PREFERRED_CHAIN }}
|
2021-06-21 23:48:37 +00:00
|
|
|
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: |
|
2021-10-12 15:43:20 +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,xxd
|
2021-06-21 23:48:37 +00:00
|
|
|
shell: cmd
|
|
|
|
- name: Set ENV
|
|
|
|
shell: cmd
|
|
|
|
run: |
|
2021-10-03 11:28:30 +00:00
|
|
|
echo PATH=C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin;%PATH% >> %GITHUB_ENV%
|
2021-06-21 23:48:37 +00:00
|
|
|
- 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
|
|
|
|
|
|
|
|
|
|
|
|
|