From 21988f399ed926c9e45d2d8728bb8cbb5b18dadf Mon Sep 17 00:00:00 2001 From: Varun Agrawal Date: Wed, 19 Aug 2020 11:49:27 -0400 Subject: [PATCH] reduce special cases to only Ubuntu+GCC, disable Python CI for Ubuntu GCC9 --- .github/workflows/build-python.yml | 2 +- .github/workflows/build-special.yml | 45 ++--------------------------- 2 files changed, 3 insertions(+), 44 deletions(-) diff --git a/.github/workflows/build-python.yml b/.github/workflows/build-python.yml index 0b4a7f12f..b46224086 100644 --- a/.github/workflows/build-python.yml +++ b/.github/workflows/build-python.yml @@ -20,7 +20,7 @@ jobs: # See https://help.github.com/en/articles/workflow-syntax-for-github-actions. name: [ ubuntu-18.04-gcc-5, - ubuntu-18.04-gcc-9, + # ubuntu-18.04-gcc-9, # TODO Disabled for now because of timeouts ubuntu-18.04-clang-9, macOS-10.15-xcode-11.3.1, ] diff --git a/.github/workflows/build-special.yml b/.github/workflows/build-special.yml index e5fc87fe3..21984311b 100644 --- a/.github/workflows/build-special.yml +++ b/.github/workflows/build-special.yml @@ -19,16 +19,11 @@ jobs: matrix: # Github Actions requires a single row to be added to the build matrix. # See https://help.github.com/en/articles/workflow-syntax-for-github-actions. - name: [ + name: + [ ubuntu-gcc-deprecated, ubuntu-gcc-quaternions, ubuntu-gcc-points-vector, - macos-xcode-deprecated, - macos-xcode-quaternions, - macos-xcode-points-vector, - ubuntu-clang-deprecated, - ubuntu-clang-quaternions, - ubuntu-clang-points-vector ] build_type: [Debug, Release] @@ -52,42 +47,6 @@ jobs: version: "9" flag: points-vector - - name: macos-xcode-deprecated - os: macOS-10.15 - compiler: xcode - version: "11.3.1" - flag: deprecated - - - name: macos-xcode-quaternions - os: macOS-10.15 - compiler: xcode - version: "11.3.1" - flag: quaternions - - - name: macos-xcode-points-vector - os: macOS-10.15 - compiler: xcode - version: "11.3.1" - flag: points-vector - - - name: ubuntu-clang-deprecated - os: ubuntu-18.04 - compiler: clang - version: "9" - flag: deprecated - - - name: ubuntu-clang-quaternions - os: ubuntu-18.04 - compiler: clang - version: "9" - flag: quaternions - - - name: ubuntu-clang-points-vector - os: ubuntu-18.04 - compiler: clang - version: "9" - flag: points-vector - steps: - name: Checkout uses: actions/checkout@master