Skip to content

Commit 13f0d63

Browse files
committed
fix workflows
1 parent 059da80 commit 13f0d63

4 files changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/macos.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
path: "**/cpm_modules"
2727
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
2828

29+
- name: Install macOS build dependencies
30+
run: |
31+
brew update
32+
brew install autoconf automake libtool
33+
2934
- name: configure
3035
run: cmake -Stest -Bbuild -DCMAKE_BUILD_TYPE=Debug
3136

.github/workflows/standalone.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
path: "**/cpm_modules"
2626
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
2727

28+
- name: Install build deps
29+
run: |
30+
sudo apt-get update
31+
sudo apt-get install -y libcurl4-openssl-dev
32+
2833
- name: configure
2934
run: cmake -Sstandalone -Bbuild -DCMAKE_BUILD_TYPE=Debug
3035

.github/workflows/ubuntu.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ jobs:
2727
path: "**/cpm_modules"
2828
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
2929

30+
- name: Install build deps
31+
run: |
32+
sudo apt-get update
33+
sudo apt-get install -y libcurl4-openssl-dev
34+
3035
- name: configure
3136
run: cmake -Stest -Bbuild -DENABLE_TEST_COVERAGE=1 -DCMAKE_BUILD_TYPE=Debug
3237

.github/workflows/windows.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ jobs:
2626
path: "**/cpm_modules"
2727
key: ${{ github.workflow }}-cpm-modules-${{ hashFiles('**/CMakeLists.txt', '**/*.cmake') }}
2828

29+
- name: Install zlib via Chocolatey
30+
run: choco install zlib -y
31+
2932
- name: configure
3033
run: cmake -Stest -Bbuild
3134

0 commit comments

Comments
 (0)