Skip to content

Commit

Permalink
try fixing CI build of fribidi
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfouilleul committed Nov 5, 2024
1 parent 62172b7 commit 13f537f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/build-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ jobs:
with:
python-version: '3.10'

- name: install autotools
run: |
brew install autoconf automake libtool
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4
Expand Down Expand Up @@ -122,6 +126,10 @@ jobs:
with:
python-version: '3.10'

- name: install autotools
run: |
brew install autoconf automake libtool
- uses: actions/checkout@v4

- uses: actions/download-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion samples/clock/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ wasmFlags=(--target=wasm32 \
-I "$ORCA_DIR"/src/ext)

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

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

0 comments on commit 13f537f

Please sign in to comment.