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
run: |
make runtime
- name: Install wasm_apps link
run: |
make wasm_apps
# TODO:Cache assets before being copied to ./runtime/bin
- name: Cache gocr
uses: actions/cache@v2

1
.gitignore vendored

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

4
.gitmodules vendored

@ -12,7 +12,3 @@
[submodule "jsmn"]
path = runtime/thirdparty/jsmn
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
.PHONY: install
install: submodules all
install: submodules wasm_apps all
# aWsm: the WebAssembly to LLVM bitcode compiler
.PHONY: awsm
@ -50,6 +50,10 @@ applications:
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
.PHONY: test
test:

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