Skip to content

Commit

Permalink
Fix Github Actions again
Browse files Browse the repository at this point in the history
...or try to, anyway
  • Loading branch information
tcbrindle committed Nov 14, 2022
1 parent 915f7d5 commit 8688173
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- name: Build
run: |
brew install gcc@11 lcov ninja
brew link --force binutils
cmake -E make_directory ${{runner.workspace}}/build
cd ${{runner.workspace}}/build
cmake ${GITHUB_WORKSPACE} -GNinja -DCMAKE_CXX_COMPILER=g++-11 -DCMAKE_CXX_FLAGS="--coverage" -DCMAKE_EXE_LINKER_FLAGS="--coverage"
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
include:
- install: brew install gcc@11 ninja
- install: |
brew install gcc@11 ninja
brew link --force binutils
steps:
- name: Checkout repository
Expand Down

0 comments on commit 8688173

Please sign in to comment.