File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4545 # Upload the dist folder. Give it a name according to the OS it was built for.
4646 name : ${{ format( 'dist-{0}.tgz', matrix.os) }}
4747 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)
1212default : build
1313 @echo " Use -fdebug-prefix-map=$( ROOT_DIR) =wasisdk://v$( VERSION) "
1414
15+ check :
16+ cd tests && PATH=" $( PREFIX) /bin:$$ PATH" ./run.sh
17+
1518clean :
1619 rm -rf build $(PREFIX )
1720
@@ -157,4 +160,4 @@ build/package.BUILT: build strip
157160 ./tar_from_installation.sh $(shell pwd) /dist
158161 touch build/package.BUILT
159162
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