Skip to content

Commit

Permalink
Merge pull request #456 from ginglis13/build-id-len
Browse files Browse the repository at this point in the history
build: use consistent length for project build ID
  • Loading branch information
ginglis13 authored Feb 11, 2025
2 parents ad3d25c + 915939d commit 3e2d029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion twoliter/embedded/Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ BUILDSYS_CACERTS_BUNDLE_OVERRIDE = ""
BUILDSYS_METADATA_DIR = "${BUILDSYS_BUILD_DIR}/metadata"
BUILDSYS_CARGO_METADATA_PATH = "${BUILDSYS_METADATA_DIR}/cargo_metadata.json"
BUILDSYS_SBKEYS_PROFILE = { script = ['echo "${BUILDSYS_SBKEYS_PROFILE:-local}"'] }
BUILDSYS_VERSION_BUILD = { script = ["git describe --always --dirty --exclude '*' || echo 00000000"] }
BUILDSYS_VERSION_BUILD = { script = ["git describe --always --dirty --exclude '*' --abbrev=8 || echo 00000000"] }
# The unix timestamp in ms of the latest commit of the project.
# This is an input for setting the Release value of a package.
BUILDSYS_VERSION_BUILD_TIMESTAMP = { script = ["git show -s --format=%ct HEAD || echo 0000000000"] }
Expand Down

0 comments on commit 3e2d029

Please sign in to comment.