2016-06-29 22:21:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-02-15 15:47:47 +01:00
|
|
|
source util/travis_push.sh
|
2018-03-29 23:47:02 +02:00
|
|
|
|
2016-06-29 22:21:41 +02:00
|
|
|
set -o errexit -o nounset
|
|
|
|
|
|
|
|
rev=$(git rev-parse --short HEAD)
|
2018-12-26 01:40:53 +01:00
|
|
|
echo "Using git hash ${rev}"
|
2016-06-29 22:21:41 +02:00
|
|
|
|
2018-03-29 23:47:02 +02:00
|
|
|
if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then
|
|
|
|
|
2019-07-10 00:47:18 +02:00
|
|
|
# fix formatting
|
2017-08-22 05:39:06 +02:00
|
|
|
git checkout master
|
2019-07-11 01:24:48 +02:00
|
|
|
git diff --diff-filter=AM --name-only -n 1 -z ${TRAVIS_COMMIT_RANGE} | xargs -0 dos2unix
|
2019-10-10 12:48:37 +02:00
|
|
|
git diff --diff-filter=AM --name-only -n 1 -z ${TRAVIS_COMMIT_RANGE} | grep -e '^drivers' -e '^quantum' -e '^tests' -e '^tmk_core' | grep -v 'quantum/template' | xargs -0 clang-format
|
2019-07-11 01:24:48 +02:00
|
|
|
git diff --diff-filter=AM --name-only -n 1 -z ${TRAVIS_COMMIT_RANGE} | xargs -0 git add
|
|
|
|
git commit -m "format code according to conventions [skip ci]" && git push git@github.com:qmk/qmk_firmware.git master
|
2017-08-07 17:19:13 +02:00
|
|
|
|
2018-03-29 23:47:02 +02:00
|
|
|
increment_version ()
|
|
|
|
{
|
|
|
|
declare -a part=( ${1//\./ } )
|
|
|
|
part[2]=$((part[2] + 1))
|
|
|
|
new="${part[*]}"
|
|
|
|
echo -e "${new// /.}"
|
2018-12-26 01:40:53 +01:00
|
|
|
}
|
2017-02-06 22:04:28 +01:00
|
|
|
|
2017-07-03 05:38:20 +02:00
|
|
|
git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE}
|
|
|
|
|
2018-03-25 03:34:34 +02:00
|
|
|
NEFM=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -Ev '^(keyboards/)' | grep -Ev '^(docs/)' | grep -Ev '^(users/)' | grep -Ev '^(layouts/)' | wc -l)
|
2017-02-06 22:04:28 +01:00
|
|
|
if [[ $NEFM -gt 0 ]] ; then
|
|
|
|
echo "Essential files modified."
|
2017-02-06 23:51:20 +01:00
|
|
|
git fetch --tags
|
2019-07-12 07:33:25 +02:00
|
|
|
lasttag=$(git tag --sort=-creatordate --no-column --list '*.*.*' | grep -E -m1 '^[0-9]+\.[0-9]+\.[0-9]+$')
|
2017-02-06 22:04:28 +01:00
|
|
|
newtag=$(increment_version $lasttag)
|
2017-11-14 22:47:34 +01:00
|
|
|
until git tag $newtag; do
|
|
|
|
newtag=$(increment_version $newtag)
|
|
|
|
done
|
2017-05-29 18:14:49 +02:00
|
|
|
git push --tags git@github.com:qmk/qmk_firmware.git
|
2017-02-06 22:04:28 +01:00
|
|
|
else
|
|
|
|
echo "No essential files modified."
|
|
|
|
fi
|
|
|
|
|
2017-02-06 22:42:18 +01:00
|
|
|
if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
|
2017-11-15 04:14:59 +01:00
|
|
|
make generate-keyboards-file SILENT=true > .keyboards
|
2017-02-06 22:42:18 +01:00
|
|
|
cd ..
|
2017-05-28 22:16:56 +02:00
|
|
|
git clone git@github.com:qmk/qmk.fm.git
|
2017-02-06 22:42:18 +01:00
|
|
|
cd qmk.fm
|
2017-08-22 03:57:46 +02:00
|
|
|
mv ../qmk_firmware/id_rsa_qmk.fm id_rsa_qmk.fm
|
2017-11-15 04:14:59 +01:00
|
|
|
mv ../qmk_firmware/.keyboards .
|
2017-08-20 20:04:26 +02:00
|
|
|
ssh-add -D
|
|
|
|
eval `ssh-agent -s`
|
2017-08-22 03:57:46 +02:00
|
|
|
ssh-add id_rsa_qmk.fm
|
2018-12-26 01:40:53 +01:00
|
|
|
|
2017-11-17 20:09:27 +01:00
|
|
|
# don't delete files in case not all keyboards are built
|
|
|
|
# rm -f compiled/*.hex
|
2017-08-23 21:44:17 +02:00
|
|
|
|
|
|
|
# ignore errors here
|
2019-05-28 20:38:47 +02:00
|
|
|
# In theory, this is more flexible, and will allow for additional expansion of additional types of files and other names
|
|
|
|
mv ../qmk_firmware/*_default.*{hex,bin} ./compiled/ || true
|
|
|
|
|
|
|
|
# get the list of keyboards
|
|
|
|
readarray -t keyboards < .keyboards
|
|
|
|
|
|
|
|
# replace / with _
|
|
|
|
keyboards=("${keyboards[@]//[\/]/_}")
|
|
|
|
|
|
|
|
# remove all binaries that don't belong to a keyboard in .keyboards
|
|
|
|
for file in "./compiled"/* ; do
|
|
|
|
match=0
|
|
|
|
for keyboard in "${keyboards[@]}" ; do
|
|
|
|
if [[ ${file##*/} = "${keyboard}_default.bin" ]] || [[ ${file##*/} = "${keyboard}_default.hex" ]]; then
|
|
|
|
match=1
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
if [[ $match = 0 ]]; then
|
|
|
|
echo "Removing deprecated binary: $file"
|
|
|
|
rm "$file"
|
|
|
|
fi
|
|
|
|
done
|
Remove AUTOGEN and fix Travis Compiled Push scripts (#5077)
* Grab HEX and BIN files from autogen
And push them to qmk.fm/compiled
* Make autogen copy extension agnostic
This way, when travis cl scrpit looks for hex files, it will actually grab bin files, and not hex files for ARM boards
* Handle the AUTOGEN in :bin target to properly handle edge cases
Both the TADA68 and ATSAM boards generate the hex file and then convert it to a bin file. The changes I made does not handle this well, at all. This removes the hex and replaces it with a bin, if a bin is normally generated.
* Revert hex target to original copy command
* Check hex and bin separately in compile push script
Since I don't know how to script this, well
* Simplify push to compiled folder
* Further simplify compiled push script
* Move AUTOGEN parsing to a more sane location to prevent tech debt
Thanks to skully!
* Remove AUTOGEN completely, as it's not needed
This has the benefit of making everything super simple, since we can pull every hex and bin from the root of the qmk_firmware folder, and move that to th compiled folder. This also removes old and unneeded code, and removes some tech debt that has been accrued, without adding more, in theory.
2019-02-13 01:46:04 +01:00
|
|
|
|
2017-11-15 04:31:34 +01:00
|
|
|
bash _util/generate_keyboard_page.sh
|
2017-02-06 22:42:18 +01:00
|
|
|
git add -A
|
2018-12-26 01:40:53 +01:00
|
|
|
git commit -m "generated from qmk/qmk_firmware@${rev}"
|
2017-05-29 18:49:25 +02:00
|
|
|
git push git@github.com:qmk/qmk.fm.git
|
2018-03-29 23:47:02 +02:00
|
|
|
|
|
|
|
fi
|
|
|
|
|
2017-02-06 22:56:39 +01:00
|
|
|
fi
|