Skip to content

Commit

Permalink
linux/macos: fix dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
quesnel committed Jul 2, 2024
1 parent cda1b1e commit b78bcf2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Linux

on:
push:
branches: [ master, test ]
branches: [ master, test, linux ]
pull_request:
branches: [ master, test ]
branches: [ master, test, linux ]

env:
CC: gcc-10
Expand All @@ -24,7 +24,7 @@ jobs:
submodules: recursive

- name: Install expat
run: sudo apt-get install libexpat-dev
run: sudo apt-get install libexpat-dev libfmt-dev

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_CXX_STANDARD=17 -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: MacOS

on:
push:
branches: [ master, test ]
branches: [ master, test, macos ]
pull_request:
branches: [ master, test ]
branches: [ master, test, macos ]

env:
CC: clang
Expand All @@ -24,7 +24,7 @@ jobs:
submodules: recursive

- name: Install dependencies
run: brew install expat
run: brew install expat fmt

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}}
Expand Down

0 comments on commit b78bcf2

Please sign in to comment.