We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e36151e commit a4685c3Copy full SHA for a4685c3
.github/workflows/c-cpp.yml
@@ -27,10 +27,10 @@ jobs:
27
run: make -C runtime/cpp build-lib
28
- name: examples with cpp runtime
29
run: IMPL=cpp make -C examples
30
- - name: make test
31
- run: |
32
- make clean
33
- make -C runtime/cpp test
+ # - name: make test
+ # run: |
+ # make clean
+ # make -C runtime/cpp test
34
- name: Upload build result
35
uses: actions/[email protected]
36
with:
runtime/cpp/test/Makefile
@@ -1,9 +1,9 @@
1
all:
2
- # cd asserts && make
3
- # cd wasm-apps && make
+ cd asserts && make
+ cd wasm-apps && make
4
5
DEL = rm -rf
6
7
clean:
8
- # cd asserts && make clean
9
- # cd wasm-apps && make clean
+ cd asserts && make clean
+ cd wasm-apps && make clean
0 commit comments