mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-13 03:35:17 +00:00
78 lines
2.5 KiB
YAML
78 lines
2.5 KiB
YAML
# https://taskfile.dev
|
|
|
|
version: '3'
|
|
|
|
dotenv:
|
|
- '.env'
|
|
|
|
vars:
|
|
VERSION:
|
|
sh: cat node/config/version.go | grep -A 1 "func GetVersion() \[\]byte {" | grep -Eo '0x[0-9a-fA-F]+' | xargs printf "%d.%d.%d"
|
|
GIT_REPO:
|
|
sh: git config --get remote.origin.url | sed 's/\.git$//'
|
|
GIT_BRANCH:
|
|
sh: git rev-parse --abbrev-ref HEAD
|
|
GIT_COMMIT:
|
|
sh: git log -1 --format=%h
|
|
|
|
tasks:
|
|
status:
|
|
desc: Display configuration info.
|
|
cmds:
|
|
- echo -n "Image name:" && echo " ${QUILIBRIUM_IMAGE_NAME:-quilibrium}"
|
|
- echo -n "Version :" && echo " {{.VERSION}}"
|
|
- echo -n "Repo :" && echo " {{.GIT_REPO}}"
|
|
- echo -n "Branch :" && echo " {{.GIT_BRANCH}}"
|
|
- echo -n "Commit :" && echo " {{.GIT_COMMIT}}"
|
|
silent: true
|
|
|
|
build_node_arm64_macos:
|
|
desc: Build the Quilibrium node binary for MacOS ARM. Assumes it's ran from the same platform. Outputs to node/build.
|
|
cmds:
|
|
- vdf/generate.sh
|
|
- node/build.sh -o build/arm64_macos/node
|
|
|
|
build_node_arm64_linux:
|
|
desc: Build the Quilibrium node binary for ARM64 Linux. Outputs to node/build.
|
|
cmds:
|
|
- docker build --platform linux/arm64 -f Dockerfile --output node/build/arm64_linux --target=node .
|
|
|
|
build_node_amd64_linux:
|
|
desc: Build the Quilibrium node binary for AMD64 Linux. Outputs to node/build.
|
|
cmds:
|
|
- docker build --platform linux/amd64 -f Dockerfile --output node/build/amd64_linux --target=node .
|
|
|
|
build:
|
|
desc: Build the Quilibrium docker image, unless it is already built.
|
|
cmds:
|
|
- |
|
|
docker build \
|
|
--build-arg NODE_VERSION={{.VERSION}} \
|
|
--build-arg GIT_REPO={{.GIT_REPO}} \
|
|
--build-arg GIT_BRANCH={{.GIT_BRANCH}} \
|
|
--build-arg GIT_COMMIT={{.GIT_COMMIT}} \
|
|
-t ${QUILIBRIUM_IMAGE_NAME:-quilibrium}:{{.VERSION}} \
|
|
-t ${QUILIBRIUM_IMAGE_NAME:-quilibrium}:latest \
|
|
.
|
|
status:
|
|
- |
|
|
docker image inspect \
|
|
${QUILIBRIUM_IMAGE_NAME:-quilibrium}:{{.VERSION}} \
|
|
>/dev/null 2>/dev/null
|
|
|
|
github:login:
|
|
desc: Login to GitHub container registry.
|
|
cmds:
|
|
- echo $GITHUB_TOKEN | docker login ghcr.io -u $GITHUB_USERNAME --password-stdin
|
|
|
|
docker:login:
|
|
desc: Login to Docker hub
|
|
cmds:
|
|
- echo $DOCKER_TOKEN | docker login -u $DOCKER_USERNAME --password-stdin
|
|
|
|
push:
|
|
desc: Push Quilibrium docker image to the container registry.
|
|
cmds:
|
|
- docker push ${QUILIBRIUM_IMAGE_NAME:-quilibrium}:{{.VERSION}}
|
|
- docker push ${QUILIBRIUM_IMAGE_NAME:-quilibrium}:latest
|