Remove wasm_apps submodule from Sledge repo (#368)

* remove wasm_apps submodule copy from Sledge
master
Emil 2 years ago committed by GitHub
parent be911e206c
commit dac95d08f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -94,6 +94,9 @@ jobs:
- name: Compile SLEdge - name: Compile SLEdge
run: | run: |
make runtime make runtime
- name: Install wasm_apps link
run: |
make wasm_apps
# TODO:Cache assets before being copied to ./runtime/bin # TODO:Cache assets before being copied to ./runtime/bin
- name: Cache gocr - name: Cache gocr
uses: actions/cache@v2 uses: actions/cache@v2

1
.gitignore vendored

@ -52,6 +52,7 @@ dkms.conf
runtime/tags runtime/tags
runtime/bin runtime/bin
applications/wasm_apps
applications/tmp/ applications/tmp/
applications/**/*.csv applications/**/*.csv
applications/**/*.txt applications/**/*.txt

4
.gitmodules vendored

@ -12,7 +12,3 @@
[submodule "jsmn"] [submodule "jsmn"]
path = runtime/thirdparty/jsmn path = runtime/thirdparty/jsmn
url = https://github.com/gwsystems/jsmn.git url = https://github.com/gwsystems/jsmn.git
[submodule "wasm_apps"]
path = applications/wasm_apps
url = https://github.com/gwsystems/wasm_apps.git
branch = master

@ -11,7 +11,7 @@ submodules:
git submodule update --init --recursive git submodule update --init --recursive
.PHONY: install .PHONY: install
install: submodules all install: submodules wasm_apps all
# aWsm: the WebAssembly to LLVM bitcode compiler # aWsm: the WebAssembly to LLVM bitcode compiler
.PHONY: awsm .PHONY: awsm
@ -50,6 +50,10 @@ applications:
applications.clean: applications.clean:
make -C applications clean make -C applications clean
# Instead of having two copies of wasm_apps, just link to the awsm repo's copy
wasm_apps:
ln -sr awsm/applications/wasm_apps/ applications/
# Tests # Tests
.PHONY: test .PHONY: test
test: test:

@ -1 +0,0 @@
Subproject commit 3f5bc009f71c9561bfb4f3b08b47aa53983ef0f9
Loading…
Cancel
Save