github: set GIT_VERSION_INT to consistent value for checksum tests

For consistent git hashes
This commit is contained in:
Peter Barker 2022-04-10 00:36:38 +10:00 committed by Peter Barker
parent eb930f830b
commit fa293fd5f3
1 changed files with 4 additions and 4 deletions

View File

@ -69,9 +69,9 @@ jobs:
if [ "${{matrix.config}}" = "Hitec-Airspeed" ] ||
[ "${{matrix.config}}" = "f103-GPS" ]; then
CHIBIOS_GIT_VERSION="12345678" GIT_VERSION="abcdef" ./waf AP_Periph
CHIBIOS_GIT_VERSION="12345678" GIT_VERSION="abcdef" GIT_VERSION_INT="15" ./waf AP_Periph
else
CHIBIOS_GIT_VERSION="12345678" GIT_VERSION="abcdef" ./waf
CHIBIOS_GIT_VERSION="12345678" GIT_VERSION="abcdef" GIT_VERSION_INT="15" ./waf
fi
cp -r build/${{matrix.config}}/bin/* "$NO_VERSIONS_DIR"
@ -114,9 +114,9 @@ jobs:
if [ "${{matrix.config}}" = "Hitec-Airspeed" ] ||
[ "${{matrix.config}}" = "f103-GPS" ]; then
CHIBIOS_GIT_VERSION="12345678" GIT_VERSION="abcdef" ./waf AP_Periph
CHIBIOS_GIT_VERSION="12345678" GIT_VERSION="abcdef" GIT_VERSION_INT="15" ./waf AP_Periph
else
CHIBIOS_GIT_VERSION="12345678" GIT_VERSION="abcdef" ./waf
CHIBIOS_GIT_VERSION="12345678" GIT_VERSION="abcdef" GIT_VERSION_INT="15" ./waf
fi
cp -r build/${{matrix.config}}/bin/* "$NO_VERSIONS_DIR"