Skip to content

Commit

Permalink
Enable Valgrind on macOS too
Browse files Browse the repository at this point in the history
  • Loading branch information
KitsuneRal authored Jan 1, 2021
1 parent 8fb231f commit 3d0d928
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,21 @@ jobs:
cached: ${{ steps.cache-qt.outputs.cache-hit }}

- name: Install Valgrind
if: contains(matrix.os, 'ubuntu')
run: sudo apt-get install valgrind

- name: Cache Homebrew
id: cache-homebrew
if: contains(matrix.os, 'macos')
uses: actions/cache@v2
with:
path: ~/Library/Caches/Homebrew
key: HomebrewCache

- name: Install Valgrind
if: contains(matrix.os, 'macos')
run: brew install valgrind

- name: Setup build environment
run: |
if [ "${{ matrix.compiler }}" == "GCC" ]; then
Expand Down

0 comments on commit 3d0d928

Please sign in to comment.