Skip to content

Commit 13f537f

Browse files
try fixing CI build of fribidi
1 parent 62172b7 commit 13f537f

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/build-all.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ jobs:
8080
with:
8181
python-version: '3.10'
8282

83+
- name: install autotools
84+
run: |
85+
brew install autoconf automake libtool
86+
8387
- uses: actions/checkout@v4
8488

8589
- uses: actions/download-artifact@v4
@@ -122,6 +126,10 @@ jobs:
122126
with:
123127
python-version: '3.10'
124128

129+
- name: install autotools
130+
run: |
131+
brew install autoconf automake libtool
132+
125133
- uses: actions/checkout@v4
126134

127135
- uses: actions/download-artifact@v4

samples/clock/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ wasmFlags=(--target=wasm32 \
1515
-I "$ORCA_DIR"/src/ext)
1616

1717
# build sample as wasm module and link it with the orca module
18-
clang -v "${wasmFlags[@]}" -L "$ORCA_DIR"/bin -lorca_wasm -o module.wasm src/main.c
18+
clang "${wasmFlags[@]}" -L "$ORCA_DIR"/bin -lorca_wasm -o module.wasm src/main.c
1919

2020
# create app directory and copy files into it
2121
orca bundle --name Clock --icon icon.png --resource-dir data module.wasm

0 commit comments

Comments
 (0)