acme.sh/.github/workflows/Windows.yml

79 lines
2.2 KiB
YAML
Raw Permalink Normal View History

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