You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

151 lines
4.4 KiB
Makefile

# set ROOT_DIR as our test suite uses it
export ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
# no additional software note
NO_ADDITIONAL_SOFTWARE := echo "No additional software required for this target"
# target argument
TARGET_ARG :=
# target folder path
TARGET_FOLDER := target/
# additional software installation
ADDITIONAL_SOFTWARE :=
# update variables depending on target
ifneq ($(origin TARGET),undefined)
ifeq ($(TARGET),x86_64-unknown-linux-musl)
# for MUSL builds, we need to install musl-tools
ADDITIONAL_SOFTWARE += sudo apt-get update && sudo apt install musl-tools -y
else ifeq ($(TARGET),i686-unknown-linux-gnu)
# for 32-bit we need multilib
ADDITIONAL_SOFTWARE += sudo apt-get update && sudo apt install gcc-multilib -y
else
ADDITIONAL_SOFTWARE += ${NO_ADDITIONAL_SOFTWARE}
endif
TARGET_ARG += --target ${TARGET}
TARGET_FOLDER := $(addsuffix ${TARGET}/,${TARGET_FOLDER})
else
ADDITIONAL_SOFTWARE += ${NO_ADDITIONAL_SOFTWARE}
endif
TARGET_FOLDER := $(addsuffix release/,${TARGET_FOLDER})
# cargo build
CBUILD := cargo build $(TARGET_ARG)
# cargo test
CTEST := cargo test $(TARGET_ARG)
# binary file paths
BINARY_SKYSH := $(TARGET_FOLDER)skysh
BINARY_SKYD := $(TARGET_FOLDER)skyd
BINARY_SKYBENCH := $(TARGET_FOLDER)sky-bench
BINARY_SKYMIGRATE := $(TARGET_FOLDER)sky-migrate
# archive command
ARCHIVE :=
# start background server command
START_SERVER := cargo run $(TARGET_ARG) -p skyd -- --noart --sslchain cert.pem --sslkey key.pem
STOP_SERVER :=
ifeq ($(OS),Windows_NT)
# on windows, so we need exe
ARCHIVE += 7z a ourbundle.zip $(BINARY_SKYSH).exe $(BINARY_SKYD).exe $(BINARY_SKYBENCH).exe $(BINARY_SKYMIGRATE).exe
# also add RUSTFLAGS
export RUSTFLAGS = -Ctarget-feature=+crt-static
# now add start command
START_SERVER := cmd /C START /B $(START_SERVER)
# windows is funky with OpenSSL, so add these
CBUILD := cmd /C $(CBUILD)
CTEST := cmd /C $(CTEST)
# finally add stop command
STOP_SERVER := taskkill.exe /F /IM skyd.exe
else
# not windows, so archive is easy
ARCHIVE += zip -j ourbundle.zip $(BINARY_SKYSH) $(BINARY_SKYD) $(BINARY_SKYBENCH) $(BINARY_SKYMIGRATE)
# now add start command
START_SERVER := $(START_SERVER) &
# add stop command
STOP_SERVER := pkill skyd
endif
# update the archive command if we have a version and artifact name
RENAME_ARTIFACT :=
ifneq ($(origin ARTIFACT),undefined)
# so we have an artifact name
ifneq ($(origin VERSION),undefined)
# we also have the version name
RENAME_ARTIFACT := sky-bundle-${VERSION}-${ARTIFACT}.zip
else
# no version name
RENAME_ARTIFACT := sky-bundle-${ARTIFACT}.zip
endif
else
# no artifact (hack)
RENAME_ARTIFACT := bundle.zip
endif
RENAME_ARTIFACT := $(addprefix mv ourbundle.zip ,${RENAME_ARTIFACT})
# cargo build (debug)
DEBUG := $(CBUILD)
# cargo test
TEST := $(CTEST)
# cargo build (release)
RELEASE := $(CBUILD) --release
# cargo build (release) for skyd,skysh,sky-migrate and sky-bench
RELEASE_BUNDLE := $(RELEASE) -p skyd -p sky-bench -p skysh -p sky-migrate
SEP=echo "============================================================"
.pre:
@${SEP}
@echo "Installing additional dependencies ..."
@${ADDITIONAL_SOFTWARE}
@${SEP}
build: .pre
@${SEP}
@echo "Building all binaries (debug) ..."
@${DEBUG}
@${SEP}
release: .pre
@${SEP}
@echo "Building all binaries (release) ..."
@${RELEASE}
@${SEP}
release-bundle: .pre
@${SEP}
@echo "Building binaries for packaging (release) ..."
@${RELEASE_BUNDLE}
@${SEP}
bundle: release-bundle
@${SEP}
@echo "Building and packaging bundle (release) ..."
@${ARCHIVE}
@${RENAME_ARTIFACT}
@${SEP}
test: .pre
@${SEP}
@echo "Building and starting server in debug mode ..."
@${CBUILD} -p skyd
@chmod +x ci/ssl.sh && bash ci/ssl.sh
@${START_SERVER}
@echo "Sleeping for 10 seconds to let the server start up ..."
@sleep 10
@echo "Finished sleeping"
@${SEP}
@${SEP}
@echo "Running all tests ..."
@${TEST}
@echo "Waiting for server to shut down ..."
@${STOP_SERVER}
@echo "Removing temporary files ..."
@rm -f .sky_pid cert.pem key.pem
@${SEP}
clean:
@${SEP}
@echo "Cleaning up target folder ..."
cargo clean
@${SEP}
deb: release-bundle
@${SEP}
@echo "Making a debian package (release) ..."
@echo "Installing tools for packaging ..."
@cargo install cargo-deb
@echo "Packaging ..."
@cargo deb $(TARGET_ARG) --no-build --manifest-path=server/Cargo.toml --output skytable-${VERSION}-${ARTIFACT}.deb
@${SEP}