2021-06-22 01:48:37 +02:00
|
|
|
name: Windows
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
paths:
|
|
|
|
- '*.sh'
|
2021-06-24 18:01:46 +02:00
|
|
|
- '.github/workflows/Windows.yml'
|
2021-06-22 01:48:37 +02:00
|
|
|
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
paths:
|
|
|
|
- '*.sh'
|
2021-06-24 17:30:16 +02:00
|
|
|
- '.github/workflows/Windows.yml'
|
2021-06-22 01:48:37 +02:00
|
|
|
|
|
|
|
|
2022-08-18 14:30:11 +02:00
|
|
|
concurrency:
|
2022-08-23 16:15:50 +02:00
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
2022-08-18 14:30:11 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
|
2021-06-22 01:48:37 +02:00
|
|
|
jobs:
|
|
|
|
Windows:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
2021-06-25 16:29:40 +02:00
|
|
|
- TEST_ACME_Server: "LetsEncrypt.org_test"
|
2021-06-22 01:48:37 +02:00
|
|
|
CA_ECDSA: ""
|
|
|
|
CA: ""
|
|
|
|
CA_EMAIL: ""
|
2021-10-12 18:28:14 +02:00
|
|
|
TEST_PREFERRED_CHAIN: (STAGING) Pretend Pear X1
|
2022-04-10 13:42:49 +02: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-22 01:48:37 +02:00
|
|
|
runs-on: windows-latest
|
|
|
|
env:
|
2021-06-25 15:28:20 +02:00
|
|
|
TEST_ACME_Server: ${{ matrix.TEST_ACME_Server }}
|
2021-06-22 01:48:37 +02: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 18:03:12 +02:00
|
|
|
TEST_PREFERRED_CHAIN: ${{ matrix.TEST_PREFERRED_CHAIN }}
|
2021-06-22 01:48:37 +02:00
|
|
|
steps:
|
|
|
|
- name: Set git to use LF
|
|
|
|
run: |
|
|
|
|
git config --global core.autocrlf false
|
2023-11-20 23:39:25 +01:00
|
|
|
- uses: actions/checkout@v4
|
2021-06-22 01:48:37 +02:00
|
|
|
- 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: |
|
2022-10-17 10:45:48 +02:00
|
|
|
C:\tools\cygwin\cygwinsetup.exe -qgnNdO -R C:/tools/cygwin -s https://mirrors.kernel.org/sourceware/cygwin/ -P socat,curl,cron,unzip,git,xxd
|
2021-06-22 01:48:37 +02:00
|
|
|
shell: cmd
|
|
|
|
- name: Set ENV
|
|
|
|
shell: cmd
|
|
|
|
run: |
|
2021-10-03 13:28:30 +02:00
|
|
|
echo PATH=C:\tools\cygwin\bin;C:\tools\cygwin\usr\bin;%PATH% >> %GITHUB_ENV%
|
2021-06-22 01:48:37 +02:00
|
|
|
- name: Check ENV
|
|
|
|
shell: cmd
|
|
|
|
run: |
|
|
|
|
echo "PATH=%PATH%"
|
|
|
|
- name: Clone acmetest
|
|
|
|
shell: cmd
|
2022-10-17 12:49:10 +02:00
|
|
|
run: cd .. && git clone --depth=1 https://github.com/acmesh-official/acmetest.git && cp -r acme.sh acmetest/
|
2021-06-22 01:48:37 +02:00
|
|
|
- name: Run acmetest
|
|
|
|
shell: cmd
|
|
|
|
run: cd ../acmetest && bash.exe -c ./letest.sh
|
|
|
|
|
|
|
|
|
|
|
|
|