File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 45
45
# Upload the dist folder. Give it a name according to the OS it was built for.
46
46
name : ${{ format( 'dist-{0}.tgz', matrix.os) }}
47
47
path : dist
48
+ check :
49
+ name : Check
50
+ runs-on : ubuntu-latest
51
+ steps :
52
+ - uses : actions/checkout@v1
53
+ with :
54
+ submodules : true
55
+ - run : make check
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ DEBUG_PREFIX_MAP=-fdebug-prefix-map=$(ROOT_DIR)=wasisdk://v$(VERSION)
12
12
default : build
13
13
@echo " Use -fdebug-prefix-map=$( ROOT_DIR) =wasisdk://v$( VERSION) "
14
14
15
+ check :
16
+ cd tests && PATH=" $( PREFIX) /bin:$$ PATH" ./run.sh
17
+
15
18
clean :
16
19
rm -rf build $(PREFIX )
17
20
@@ -157,4 +160,4 @@ build/package.BUILT: build strip
157
160
./tar_from_installation.sh $(shell pwd) /dist
158
161
touch build/package.BUILT
159
162
160
- .PHONY : default clean build strip package
163
+ .PHONY : default clean build strip package check
You can’t perform that action at this time.
0 commit comments