This repository has been archived on 2022-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
Marlin-Artillery-M600/LinuxAddons/bin/generate_version_header_for_marlin

48 lines
1.3 KiB
Plaintext
Raw Normal View History

2015-06-02 15:01:40 +02:00
#!/usr/bin/env bash
# generate_version_header_for_marlin
DIR="$1" export DIR
OUTFILE="$2" export OUTFILE
2016-04-24 06:43:29 +02:00
BUILDATE=$(date '+"%s"')
DISTDATE=$(date '+"%Y-%m-%d %H:%M"')
cat > "$OUTFILE" <<EOF
/**
* THIS FILE IS AUTOMATICALLY GENERATED DO NOT MANUALLY EDIT IT.
* IT DOES NOT GET COMMITTED TO THE REPOSITORY.
*/
#define BUILD_UNIX_DATETIME ${BUILDATE}
#define STRING_DISTRIBUTION_DATE ${DISTDATE}
#define PROTOCOL_VERSION "1.0"
#define MACHINE_NAME "Travis CI"
#define SOURCE_CODE_URL "https://github.com/MarlinFirmware/Marlin"
#define DEFAULT_MACHINE_UUID "3442baa1-08ee-435b-8a10-99d185bd43b8"
#define WEBSITE_URL "http://marlinfw.org"
EOF
2016-04-22 17:07:26 +02:00
2015-06-02 15:01:40 +02:00
( set +e
cd "$DIR"
2016-04-24 06:43:29 +02:00
2015-06-04 05:55:11 +02:00
BRANCH=`git symbolic-ref -q --short HEAD`
if [ "x$BRANCH" == "x" ] ; then
2015-06-02 15:01:40 +02:00
BRANCH=""
elif [ "x$BRANCH" == "xDevelopment" ] ; then
BRANCH=" dev"
else
BRANCH=" $BRANCH"
fi
2016-04-24 06:43:29 +02:00
VERSION=`git describe --tags --first-parent 2>/dev/null`
2015-06-02 15:01:40 +02:00
if [ "x$VERSION" != "x" ] ; then
echo "#define SHORT_BUILD_VERSION \"$VERSION\"" | sed "s/-.*/$BRANCH\"/" >>"$OUTFILE"
echo "#define DETAILED_BUILD_VERSION \"$VERSION\"" | sed "s/-/$BRANCH-/" >>"$OUTFILE"
else
VERSION=`git describe --tags --first-parent --always 2>/dev/null`
echo "#define SHORT_BUILD_VERSION \"$BRANCH\"" >>"$OUTFILE"
echo "#define DETAILED_BUILD_VERSION \"${BRANCH}-$VERSION\"" >>"$OUTFILE"
2015-06-02 15:01:40 +02:00
fi
)