fix: rename nan-tagging build configs and add release variant with CI script
Replace the broken `64bit-no-nan-tagging_64bit` and `64bit-no-nan-tagging_32bit` configurations with properly named `release_64bit-no-nan-tagging` and `debug_64bit-no-nan-tagging` across all gmake Makefiles and wren_cli.make files. Add the missing `release_64bit-no-nan-tagging` build target definitions for linux, mac, and bsd platforms. Introduce `.travis.sh` script that runs both nan-tagged and non-nan-tagged debug and release builds, and simplify `.travis.yml` to use the new script with per-os env variables instead of matrix options.
This commit is contained in:
@@ -14,17 +14,17 @@ ifeq ($(config),release_64bit)
|
||||
else ifeq ($(config),release_32bit)
|
||||
wren_cli_config = release_32bit
|
||||
|
||||
else ifeq ($(config),release_64bit-no-nan-tagging)
|
||||
wren_cli_config = release_64bit-no-nan-tagging
|
||||
|
||||
else ifeq ($(config),debug_64bit)
|
||||
wren_cli_config = debug_64bit
|
||||
|
||||
else ifeq ($(config),debug_32bit)
|
||||
wren_cli_config = debug_32bit
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_64bit)
|
||||
wren_cli_config = 64bit-no-nan-tagging_64bit
|
||||
|
||||
else ifeq ($(config),64bit-no-nan-tagging_32bit)
|
||||
wren_cli_config = 64bit-no-nan-tagging_32bit
|
||||
else ifeq ($(config),debug_64bit-no-nan-tagging)
|
||||
wren_cli_config = debug_64bit-no-nan-tagging
|
||||
|
||||
else
|
||||
$(error "invalid configuration $(config)")
|
||||
@@ -51,10 +51,10 @@ help:
|
||||
@echo "CONFIGURATIONS:"
|
||||
@echo " release_64bit"
|
||||
@echo " release_32bit"
|
||||
@echo " release_64bit-no-nan-tagging"
|
||||
@echo " debug_64bit"
|
||||
@echo " debug_32bit"
|
||||
@echo " 64bit-no-nan-tagging_64bit"
|
||||
@echo " 64bit-no-nan-tagging_32bit"
|
||||
@echo " debug_64bit-no-nan-tagging"
|
||||
@echo ""
|
||||
@echo "TARGETS:"
|
||||
@echo " all (default)"
|
||||
|
||||
Reference in New Issue
Block a user