File tree Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Expand file tree Collapse file tree 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 56
56
mingw64/mingw-w64-x86_64-SDL2_net
57
57
- name : Compile
58
58
run : |
59
- make -f Makefiles/${{ matrix.makefile }} release NET_BOARD=1 BIN_DIR=bin OUTFILE=supermodel${{ matrix.outfile_ext }} OPT="${OPT_INPUT:-"-O3 -g"}" LDOPT=""
59
+ make -f Makefiles/${{ matrix.makefile }} -j release NET_BOARD=1 BIN_DIR=bin OUTFILE=supermodel${{ matrix.outfile_ext }} OPT="${OPT_INPUT:-"-O3 -g"}" LDOPT=""
60
60
echo "pkg_path=$(make -f Makefiles/${{ matrix.makefile }} -j pkg/path)" >> $GITHUB_ENV
61
61
- name : Validate
62
62
run : ./bin/supermodel${{ matrix.outfile_ext }} -print-games
Original file line number Diff line number Diff line change @@ -118,8 +118,6 @@ PLATFORM_SRC_FILES = \
118
118
Src/OSD/Windows/WinOutputs.cpp \
119
119
Src/OSD/Windows/SupermodelResources.rc
120
120
121
- .PHONY: clean
122
-
123
121
include Makefiles/Rules.inc
124
122
125
123
clean:
Original file line number Diff line number Diff line change @@ -223,12 +223,12 @@ all: $(BIN_DIR)/$(OUTFILE)
223
223
# version number. Double-colon rules should force ordered execution.
224
224
# The automated build script relies on these -- don' t modify their output!
225
225
#
226
+ .PHONY: clean
226
227
.PHONY: set_version
227
228
.PHONY: print_message
228
229
.PHONY: version
229
- release:: set_version
230
- release:: print_message
231
230
release:: clean
231
+ release:: print_message
232
232
release:: all
233
233
234
234
PKG_FILES += $(BIN_DIR)/$(OUTFILE) Docs/README.txt Docs/LICENSE.txt Config Assets
@@ -261,7 +261,7 @@ pkg/path: set_version
261
261
set_version:
262
262
$(eval VERSION = $(strip $(subst ' ,,0.3a-git-$(shell git rev-parse --short HEAD --sq))))
263
263
$(eval SUPERMODEL_BUILD_FLAGS += -DSUPERMODEL_VERSION=\" $(VERSION)\" )
264
- print_message:
264
+ print_message: set_version
265
265
$(info Building Supermodel Version $(VERSION))
266
266
version: set_version
267
267
@echo $(VERSION)
You can’t perform that action at this time.
0 commit comments