diff options
author | Ben Ashbaugh <ben.ashbaugh@intel.com> | 2021-04-16 21:17:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-16 21:17:45 -0700 |
commit | 77d9ce7d4f76be4e09abcd36d8cb85add4343d0b (patch) | |
tree | 8650d77b5e2d6ce5dd3c618d5421125f9bfd9655 | |
parent | eea2ab6219300b8f7fc947a66b84f65331e8a2db (diff) | |
download | OpenCL-Headers-77d9ce7d4f76be4e09abcd36d8cb85add4343d0b.tar.gz OpenCL-Headers-77d9ce7d4f76be4e09abcd36d8cb85add4343d0b.tar.bz2 OpenCL-Headers-77d9ce7d4f76be4e09abcd36d8cb85add4343d0b.zip |
disable failing CI configs (#163)
* use the Ubuntu 18.04 environment instead of ubuntu-latest, for now
* disable Ninja configs for MacOS for now
* disable gcc-8 for now
-rw-r--r-- | .github/workflows/cmake.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 6446c4e..a24ddae 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -4,10 +4,11 @@ on: [push, pull_request] jobs: linux-gcc: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 strategy: matrix: - VER: [7, 8, 9] + #VER: [7, 8, 9] + VER: [7, 9] # gcc-8 is not installed on the Ubuntu 18.04 image EXT: [ON, OFF] GEN: [Unix Makefiles, Ninja] VAR: [Debug, Release] @@ -260,7 +261,8 @@ jobs: matrix: VER: [8, 9] EXT: [ON, OFF] - GEN: [Xcode, Ninja Multi-Config] + #GEN: [Xcode, Ninja Multi-Config] + GEN: [Xcode] # Disabling Ninja - need to investigate setup-ninja? STD: [99, 11] # 90 results in errors steps: |