You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
749 B
31 lines
749 B
# renovate: datasource=github-releases depName=dani-garcia/vaultwarden |
|
export BUILD_VERSION ?= 1.25.0 |
|
export DEBIAN_FRONTEND ?= noninteractive |
|
export LANG ?= C.UTF-8 |
|
export TZ ?= UTC |
|
export RUSTFLAGS ?= -C link-arg=-s |
|
|
|
DB ?= sqlite,postgresql |
|
SRC := src |
|
|
|
.PHONY: all |
|
all: build |
|
|
|
.PHONY: build |
|
build: build-src build-bin |
|
|
|
.PHONY: build-src |
|
build-src: |
|
mkdir -p $(SRC); \ |
|
curl -sSL "https://github.com/dani-garcia/vaultwarden/archive/$${BUILD_VERSION##v}.tar.gz" | tar xz -C $(SRC) --strip-components=1 |
|
|
|
.PHONY: build-bin |
|
build-bin: |
|
rustup set profile minimal && \ |
|
cd $(SRC) && \ |
|
rustup target add x86_64-unknown-linux-musl && \ |
|
BWRS_VERSION="$${BUILD_VERSION##v}" cargo build -j 8 --features $(DB) --release |
|
|
|
.PHONY: clean |
|
clean: |
|
rm -rf $(SRC)
|
|
|