Skip to content

Commit c15947d

Browse files
committed
fix CI
1 parent 9bc0424 commit c15947d

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

.github/actions/dependencies/action.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ inputs:
66
runs:
77
using: composite
88
steps:
9+
- name: export custom recipes
10+
shell: bash
11+
# TODO: add WAMR to conan center index
12+
# This is a workaround until WAMR is available in conan center
13+
run: conan export --version 2.4.1 external/wamr
914
- name: add Conan remote
1015
if: env.CONAN_URL != ''
1116
shell: bash

.github/workflows/macos.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ jobs:
8787
echo "${CONAN_GLOBAL_CONF}" > $(conan config home)/global.conf
8888
conan config install conan/profiles/ -tf $(conan config home)/profiles/
8989
conan profile show
90+
- name: export custom recipes
91+
shell: bash
92+
# TODO: add WAMR to conan center index
93+
# This is a workaround until WAMR is available in conan center
94+
run: conan export --version 2.4.1 external/wamr
9095
- name: build dependencies
9196
uses: ./.github/actions/dependencies
9297
with:

.github/workflows/windows.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,11 @@ jobs:
8282
echo "${CONAN_GLOBAL_CONF}" > $(conan config home)/global.conf
8383
conan config install conan/profiles/ -tf $(conan config home)/profiles/
8484
conan profile show
85+
- name: export custom recipes
86+
shell: bash
87+
# TODO: add WAMR to conan center index
88+
# This is a workaround until WAMR is available in conan center
89+
run: conan export --version 2.4.1 external/wamr
8590
- name: build dependencies
8691
uses: ./.github/actions/dependencies
8792
with:

0 commit comments

Comments
 (0)