Skip to content

Commit 46a1d7e

Browse files
authored
Merge pull request #487 from ellemouton/autopilotFirewall
multi: autopilot firewall and privacy map interceptors
2 parents 3b58e8e + 378a91f commit 46a1d7e

File tree

90 files changed

+22561
-340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+22561
-340
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ jobs:
114114
working-directory: ./app
115115
run: yarn
116116

117+
- name: run check
118+
run: make rpc-js-compile && make protos-check
119+
117120
- name: compile rpc for golang
118121
run: make rpc
119122

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,10 @@ protos-check: protos
228228
@$(call print, "Verifying compiled protos.")
229229
if test -n "$$(git describe --dirty | grep dirty)"; then echo "Protos not properly formatted or not compiled with correct version"; git status; git diff; exit 1; fi
230230

231+
rpc-js-compile:
232+
@$(call print, "Compiling JSON/WASM stubs.")
233+
GOOS=js GOARCH=wasm $(GOBUILD) $(PKG)/litrpc
234+
231235
clean:
232236
@$(call print, "Cleaning source.$(NC)")
233237
$(RM) ./litcli-debug

0 commit comments

Comments
 (0)