tweaks
This commit is contained in:
parent
992cf83e3d
commit
6fadf32ee8
|
@ -3,6 +3,7 @@ on:
|
||||||
push:
|
push:
|
||||||
paths:
|
paths:
|
||||||
- atlas.lock
|
- atlas.lock
|
||||||
|
- .github/workflows/ci-nimbus.yml
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
7
Makefile
7
Makefile
|
@ -30,7 +30,7 @@ LINK_PCRE := 0
|
||||||
|
|
||||||
ifeq ($(NIM_PARAMS),)
|
ifeq ($(NIM_PARAMS),)
|
||||||
# "variables.mk" was not included, so we update the submodules.
|
# "variables.mk" was not included, so we update the submodules.
|
||||||
GIT_SUBMODULE_UPDATE := nimble install https://github.com/elcritch/atlas && atlas rep atlas.lock
|
GIT_SUBMODULE_UPDATE := nimble install https://github.com/elcritch/atlas && atlas rep --noexec atlas.lock
|
||||||
.DEFAULT:
|
.DEFAULT:
|
||||||
+@ echo -e "Git submodules not found. Running '$(GIT_SUBMODULE_UPDATE)'.\n"; \
|
+@ echo -e "Git submodules not found. Running '$(GIT_SUBMODULE_UPDATE)'.\n"; \
|
||||||
$(GIT_SUBMODULE_UPDATE); \
|
$(GIT_SUBMODULE_UPDATE); \
|
||||||
|
@ -45,6 +45,11 @@ else # "variables.mk" was included. Business as usual until the end of this file
|
||||||
|
|
||||||
# default target, because it's the first one that doesn't start with '.'
|
# default target, because it's the first one that doesn't start with '.'
|
||||||
|
|
||||||
|
# Builds the codex binary
|
||||||
|
all: | build deps
|
||||||
|
echo -e $(BUILD_MSG) "$@" && \
|
||||||
|
$(ENV_SCRIPT) nim test $(NIM_PARAMS)
|
||||||
|
|
||||||
# must be included after the default target
|
# must be included after the default target
|
||||||
-include $(BUILD_SYSTEM_DIR)/makefiles/targets.mk
|
-include $(BUILD_SYSTEM_DIR)/makefiles/targets.mk
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue