SHELL := bash
.ONESHELL:
.SHELLFLAGS := -eu -o pipefail -c
.DELETE_ON_ERROR:
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
DEBUG := $(shell printf "\e[2D\e[35m")
INFO := $(shell printf "\e[2D\e[36m🔵 ")
OK := $(shell printf "\e[2D\e[32m🟢 ")
WARN := $(shell printf "\e[2D\e[33m🟡 ")
ERROR := $(shell printf "\e[2D\e[31m🔴 ")
END := $(shell printf "\e[0m")
.PHONY: default
default: help
.PHONY: help
help: Makefile
@echo "usage: make <target>"
@sed -n 's/^##//p' $<
testDataDir := tests/data/
branchName := main
githubRepoLink := https://github.com/Eppo-exp/sdk-test-data.git
.PHONY: test-data
test-data:
rm -rf ${testDataDir}
git clone -b ${branchName} --depth 1 --single-branch ${githubRepoLink} ${testDataDir}
${testDataDir}:
rm -rf ${testDataDir}
git clone -b ${branchName} --depth 1 --single-branch ${githubRepoLink} ${testDataDir}
.PHONY: test
test: ${testDataDir}
cargo test