Merge pull request #6665 from acmesh-official/dev #24
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: MacOS | |
| on: | |
| push: | |
| branches: | |
| - '*' | |
| paths: | |
| - '*.sh' | |
| - '.github/workflows/MacOS.yml' | |
| pull_request: | |
| branches: | |
| - dev | |
| paths: | |
| - '*.sh' | |
| - '.github/workflows/MacOS.yml' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| MacOS: | |
| 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: "[email protected]" | |
| # TEST_PREFERRED_CHAIN: "" | |
| runs-on: macos-latest | |
| env: | |
| TEST_LOCAL: 1 | |
| TEST_ACME_Server: ${{ matrix.TEST_ACME_Server }} | |
| CA_ECDSA: ${{ matrix.CA_ECDSA }} | |
| CA: ${{ matrix.CA }} | |
| CA_EMAIL: ${{ matrix.CA_EMAIL }} | |
| TEST_PREFERRED_CHAIN: ${{ matrix.TEST_PREFERRED_CHAIN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install tools | |
| run: brew install socat | |
| - name: Clone acmetest | |
| run: | | |
| cd .. \ | |
| && git clone --depth=1 https://github.com/acmesh-official/acmetest.git \ | |
| && cp -r acme.sh acmetest/ | |
| - name: Run acmetest | |
| run: | | |
| cd ../acmetest \ | |
| && sudo --preserve-env ./letest.sh | |