From 6d14639f770bca618fbd4c70cffa979ff19be433 Mon Sep 17 00:00:00 2001 From: Kelson Date: Thu, 27 Jan 2022 20:06:07 +0100 Subject: [PATCH 1/2] Use Python 3.10 to fix macOS CI --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfbf55098..f50aea032 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,10 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v1 - - name: Setup python 3.5 - uses: actions/setup-python@v1 + - name: Setup python 3.10 + uses: actions/setup-python@v2 with: - python-version: '3.5' + python-version: '3.10' - name: Install packages run: | brew update From b19eb1ea61105bc30de97c619c1b426bc9a61e6b Mon Sep 17 00:00:00 2001 From: Kelson Date: Thu, 27 Jan 2022 20:39:04 +0100 Subject: [PATCH 2/2] Stop publishing code coverage for macOS No reason to upload code coverage twice --- .github/workflows/ci.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f50aea032..68ca71ea3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,17 +37,8 @@ jobs: export LD_LIBRARY_PATH=$HOME/BUILD_native_dyn/INSTALL/lib:$HOME/BUILD_native_dyn/INSTALL/lib64 cd build meson test --verbose - ninja coverage env: SKIP_BIG_MEMORY_TEST: 1 - - name: Publish coverage - shell: bash - run: | - curl https://codecov.io/bash -o codecov.sh - bash codecov.sh -n osx_native_dyn -Z - rm codecov.sh - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} Linux: strategy: