mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
8df96426ef
* ensure build * moved third party to toplevel: Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
10 lines
408 B
Bash
Executable File
10 lines
408 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Note: The STABLE_ prefix will force a relink when the value changes when using rules_go x_defs.
|
|
|
|
echo STABLE_GIT_COMMIT "$(git rev-parse HEAD)"
|
|
echo DATE "$(date --rfc-3339=seconds --utc)"
|
|
echo DATE_UNIX "$(date --utc +%s)"
|
|
echo DOCKER_TAG "$(git rev-parse --abbrev-ref HEAD)-$(git rev-parse --short=6 HEAD)"
|
|
echo STABLE_GIT_TAG "$(git describe --tags "$(git rev-list --tags --max-count=1)")"
|