Skip to content

Commit b926069

Browse files
committed
try to fix CI
1 parent 4a66d98 commit b926069

File tree

3 files changed

+5
-20
lines changed

3 files changed

+5
-20
lines changed

.github/workflows/check.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,11 @@ jobs:
2727
- name: Install wasm tooling
2828
run: CC=clang cargo install wit-bindgen-cli wasm-tools --locked
2929

30-
- name: Generate code
31-
run: make setup
32-
33-
#- name: Install edgee
34-
# uses: edgee-cloud/[email protected]
35-
# with:
36-
# build: true
37-
#- name: Build component
38-
# run: edgee components build
30+
- name: Install edgee
31+
uses: edgee-cloud/[email protected]
32+
3933
- name: Build component
40-
run: make build-no-edgee
34+
run: edgee components build
4135

4236
- name: Verify .wasm file exists
4337
run: |

Makefile

-9
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,9 @@ help:
88
| sort \
99
| sed -e "s/^Makefile://" -e "s///" \
1010
| awk 'BEGIN { FS = ":.*?## " }; { printf "\033[36m%-30s\033[0m %s\n", $$1, $$2 }'
11-
internal:
12-
mkdir -p internal
13-
( cd internal && wit-bindgen c ../.edgee/wit )
14-
setup: internal ## setup development environment
15-
1611
build:
1712
edgee components build
1813

19-
build-no-edgee: setup ## build component
20-
$(CC) dc_component.c internal/data_collection.c internal/data_collection_component_type.o -mexec-model=reactor -Os
21-
wasm-tools component new -o dc_component.wasm a.out
22-
2314
clean: ## clean build artifacts
2415
rm -rf dc_component.wasm
2516
rm -rf dc_component_temp.wasm

edgee-component.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ language = "C"
1212
wit-version = "1.0.0"
1313

1414
[component.build]
15-
command = "$CC dc_component.c internal/data_collection.c internal/data_collection_component_type.o -mexec-model=reactor -Os && wasm-tools component new -o dc_component.wasm a.out"
15+
command = "mkdir -p internal && (cd internal && wit-bindgen c ../.edgee/wit && cd ..) && $CC dc_component.c internal/data_collection.c internal/data_collection_component_type.o -mexec-model=reactor -Os && wasm-tools component new -o dc_component.wasm a.out"
1616
output_path = "./dc_component.wasm"
1717

1818
[component.settings.example]

0 commit comments

Comments
 (0)