From 69ca7e68a389a19a4d48d10316a404b25177cc84 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 29 Jan 2021 14:51:12 -0500 Subject: [PATCH] Drop the GitHub Actions macOS CI configuration --- .github/workflows/ci.yaml | 60 +-------------------------------------- 1 file changed, 1 insertion(+), 59 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index defa0af..c899597 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -4,65 +4,7 @@ on: - "push" jobs: - macos-unit-tests: - runs-on: "macos-latest" - strategy: - matrix: - python-version: - - "2.7" - - steps: - - uses: actions/checkout@v2 - with: - fetch-depth: "0" - - # Get tags not fetched by the checkout action, needed for auto-versioning. - - name: "Finish checkout" - run: | - git fetch --tags - - - name: "Upgrade Pip" - run: | - python -m pip install -v --upgrade pip - - - name: "Install CI Dependencies" - run: | - python -m pip install -v wheel coverage - - - name: "Install Test Dependencies" - run: | - python -m pip install -v -r test-requirements.txt - - - name: "Install ZKAPAuthorizer" - run: | - python -m pip install -v ./ - - - name: "Dump Python Environment" - run: | - pip freeze - - - name: "Run Tests" - env: - MAGIC_FOLDER_HYPOTHESIS_PROFILE: "ci" - run: | - python -m coverage run --debug=config -m twisted.trial _zkapauthorizer - - - name: "Convert Coverage" - run: | - echo "Files:" - dir - echo "Combining" - coverage combine - echo "Reporting" - coverage report - echo "Converting to XML" - coverage xml - - - uses: codecov/codecov-action@v1 - with: - file: "./coverage.xml" - - windows-unit-tests: + unit-tests: runs-on: "windows-latest" strategy: matrix: -- GitLab