You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							78 lines
						
					
					
						
							2.2 KiB
						
					
					
				
			
		
		
		
			
			
			
		
		
	
	
							78 lines
						
					
					
						
							2.2 KiB
						
					
					
				
								name: Windows
							 | 
						|
								on:
							 | 
						|
								  push:
							 | 
						|
								    branches:
							 | 
						|
								      - '*'
							 | 
						|
								    paths:
							 | 
						|
								      - '*.sh'
							 | 
						|
								      - '.github/workflows/Windows.yml'
							 | 
						|
								
							 | 
						|
								  pull_request:
							 | 
						|
								    branches:
							 | 
						|
								      - dev
							 | 
						|
								    paths:
							 | 
						|
								      - '*.sh'
							 | 
						|
								      - '.github/workflows/Windows.yml'
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								concurrency: 
							 | 
						|
								  group: ${{ github.workflow }}-${{ github.ref }}
							 | 
						|
								  cancel-in-progress: true
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								jobs:
							 | 
						|
								  Windows:
							 | 
						|
								    strategy:
							 | 
						|
								      matrix:
							 | 
						|
								        include:
							 | 
						|
								         - TEST_ACME_Server: "LetsEncrypt.org_test"
							 | 
						|
								           CA_ECDSA: ""
							 | 
						|
								           CA: ""
							 | 
						|
								           CA_EMAIL: ""
							 | 
						|
								           TEST_PREFERRED_CHAIN: (STAGING)
							 | 
						|
								         #- 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:
							 | 
						|
								      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
							 | 
						|
								      TEST_PREFERRED_CHAIN: ${{ matrix.TEST_PREFERRED_CHAIN }}
							 | 
						|
								    steps:
							 | 
						|
								    - name: Set git to use LF
							 | 
						|
								      run: |
							 | 
						|
								                    git config --global core.autocrlf false
							 | 
						|
								    - uses: actions/checkout@v4
							 | 
						|
								    - 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: |
							 | 
						|
								                    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
							 | 
						|
								
							 | 
						|
								
							 | 
						|
								
							 |