summaryrefslogtreecommitdiffstats
path: root/.github/workflows/coverage.yml
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2019-12-16 18:35:22 (GMT)
committerGitHub <noreply@github.com>2019-12-16 18:35:22 (GMT)
commita76ba362c4d86adf5e7f8254398135d12d7afd25 (patch)
tree58c79d5a633c6bc039d80ad8cce5b0b522f16ed2 /.github/workflows/coverage.yml
parent814d687c7df3e0c60036943b68ece13f9f19dfef (diff)
downloadcpython-a76ba362c4d86adf5e7f8254398135d12d7afd25.zip
cpython-a76ba362c4d86adf5e7f8254398135d12d7afd25.tar.gz
cpython-a76ba362c4d86adf5e7f8254398135d12d7afd25.tar.bz2
bpo-39041: Add GitHub Actions support (GH-17594)
Diffstat (limited to '.github/workflows/coverage.yml')
-rw-r--r--.github/workflows/coverage.yml89
1 files changed, 89 insertions, 0 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
new file mode 100644
index 0000000..cb05e8e
--- /dev/null
+++ b/.github/workflows/coverage.yml
@@ -0,0 +1,89 @@
+name: Coverage
+
+on:
+ push:
+ branches:
+ - master
+ - 3.8
+ - 3.7
+ paths-ignore:
+ - 'Doc/**'
+ - 'Misc/**'
+ #pull_request:
+ # branches:
+ # - master
+ # - 3.8
+ # - 3.7
+ # paths-ignore:
+ # - 'Doc/**'
+ # - 'Misc/**'
+
+jobs:
+ coverage_ubuntu:
+ name: 'Ubuntu (Coverage)'
+ runs-on: ubuntu-latest
+ env:
+ OPENSSL_VER: 1.1.1d
+ steps:
+ - uses: actions/checkout@v1
+ - name: Install Dependencies
+ run: sudo ./.github/workflows/posix-deps-apt.sh
+ - name: 'Restore OpenSSL build'
+ id: cache-openssl
+ uses: actions/cache@v1
+ with:
+ path: ./multissl/openssl/${{ env.OPENSSL_VER }}
+ key: ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
+ - name: Install OpenSSL
+ if: steps.cache-openssl.outputs.cache-hit != 'true'
+ run: python3 Tools/ssl/multissltests.py --steps=library --base-directory $PWD/multissl --openssl $OPENSSL_VER --system Linux
+ - name: Configure CPython
+ run: ./configure --with-openssl=$PWD/multissl/openssl/$OPENSSL_VER
+ - name: Build CPython
+ run: make -s -j4
+ - name: Display build info
+ run: make pythoninfo
+ - name: 'Coverage Preparation'
+ run: |
+ ./python -m venv .venv
+ source ./.venv/bin/activate
+ python -m pip install -U coverage
+ python -m test.pythoninfo
+ - name: 'Tests with coverage'
+ run: >
+ source ./.venv/bin/activate &&
+ xvfb-run python -m coverage
+ run --branch --pylib
+ -m test
+ --fail-env-changed
+ -uall,-cpu
+ -x test_multiprocessing_fork
+ -x test_multiprocessing_forkserver
+ -x test_multiprocessing_spawn
+ -x test_concurrent_futures
+ || true
+ - name: 'Publish code coverage results'
+ run: |
+ ./.venv/bin/python -m coverage xml
+ bash <(curl -s https://codecov.io/bash)
+ env:
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+
+ c_coverage_ubuntu:
+ name: 'Ubuntu (C Coverage)'
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v1
+ - name: Install Dependencies
+ run: sudo ./.github/workflows/posix-deps-apt.sh
+ - name: Configure CPython
+ run: ./configure
+ - name: 'Build CPython and measure coverage'
+ run: xvfb-run make -j4 coverage-report
+ - name: 'Publish code coverage results'
+ if: always()
+ run: |
+ make pythoninfo
+ bash <(curl -s https://codecov.io/bash)
+ env:
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}