Skip to content

Commit b8ce99d

Browse files
committed
build(macos): add automake for building curl
1 parent bd40928 commit b8ce99d

4 files changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ jobs:
8080
if: matrix.android
8181
run: echo "SEA_CC=$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang" >> $GITHUB_ENV
8282

83+
- name: Install macOS build deps
84+
if: startsWith(matrix.os, 'macos')
85+
run: brew install automake
86+
8387
- uses: lde-org/setup-lde@master
8488
with:
8589
version: nightly

.github/workflows/nightly.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,10 @@ jobs:
105105
if: matrix.android
106106
run: echo "SEA_CC=$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-aarch64/bin/aarch64-linux-android21-clang" >> $GITHUB_ENV
107107

108+
- name: Install macOS build deps
109+
if: startsWith(matrix.os, 'macos')
110+
run: brew install automake
111+
108112
- uses: lde-org/setup-lde@master
109113
with:
110114
version: nightly

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ jobs:
8484
if: matrix.android
8585
run: echo "SEA_CC=$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang" >> $GITHUB_ENV
8686

87+
- name: Install macOS build deps
88+
if: startsWith(matrix.os, 'macos')
89+
run: brew install automake
90+
8791
- uses: lde-org/setup-lde@master
8892
with:
8993
version: nightly

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ jobs:
9595
if: matrix.android
9696
run: echo "SEA_CC=$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-aarch64/bin/aarch64-linux-android21-clang" >> $GITHUB_ENV
9797

98+
- name: Install macOS build deps
99+
if: startsWith(matrix.os, 'macos')
100+
run: brew install automake
101+
98102
- uses: lde-org/setup-lde@master
99103
with:
100104
version: nightly

0 commit comments

Comments
 (0)