Skip to content

Commit a144bfe

Browse files
committed
try to skip lfs; move binaries to upload path
1 parent b877879 commit a144bfe

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ env:
77
HVCC_COMMIT_HASH: 424308377a8b0e4291e0bfda3bcf68ae9fd88f33
88
CACHE_VERSION: 1
99
DEBIAN_FRONTEND: noninteractive
10+
GIT_LFS_SKIP_SMUDGE: 1
1011

1112
jobs:
1213
linux:

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ PREGEN = $(PLUGINS:%=%/plugin/source)
88
all: build
99

1010
build: pregen
11-
$(foreach p,$(PLUGINS),$(MAKE) DPF_TARGET_DIR=$(CURDIR)/bin -C $(p))
11+
$(foreach p, $(PLUGINS), $(MAKE) -C $(p);)
12+
mkdir bin
13+
$(foreach p, $(PLUGINS), mv $(p)/bin/* bin/;)
1214

1315
pregen: $(PREGEN)
1416

WSTD_EQ.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"wstd.clrs"
77
],
88
"enable_ui": true,
9-
"enable_modgui": true,
9+
"enable_modgui": false,
1010
"ui_size": {
1111
"width": 120,
1212
"height": 520

0 commit comments

Comments
 (0)