Skip to content

Commit

Permalink
CI Fixes (#225)
Browse files Browse the repository at this point in the history
* Update Ubuntu version. Container is still Ubuntu 18.04.

* Update MacOS to install gcc versions that may be missing.
  • Loading branch information
Kerilk authored Mar 28, 2023
1 parent 9ddb236 commit 8c4f011
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
compatibility:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
container: streamhpc/opencl-sdk-base:ubuntu-18.04-20220127
strategy:
matrix:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
# Install Ninja only if it's the selected generator and it's not available.
cmake --version
- name: Install gcc if required
run: |
if [[ ! `which /usr/local/bin/gcc-${{matrix.VER}}` ]]; then brew install gcc@${{matrix.VER}}; fi;
- name: Configure CMake
shell: bash
run: cmake
Expand Down

0 comments on commit 8c4f011

Please sign in to comment.