qmk-firmware/util/travis_compiled_push.sh

76 lines
2.4 KiB
Bash
Raw Normal View History

Implements subprojects and updates projects for this (#459) * non-working commit * working * subprojects implemented for planck * pass a subproject variable through to c * consolidates clueboard revisions * thanks for letting me know about conflicts.. * turn off audio for yang's * corrects starting paths for subprojects * messing around with travis * semicolon * travis script * travis script * script for travis * correct directory (probably), amend files to commit * remove origin before adding * git pull, correct syntax * git checkout * git pull origin branch * where are we? * where are we? * merging * force things to happen * adds commit message, adds add * rebase, no commit message * rebase branch * idk! * try just pull * fetch - merge * specify repo branch * checkout * goddammit * merge? idk * pls * after all * don't split up keyboards * syntax * adds quick for all-keyboards * trying out new script * script update * lowercase * all keyboards * stop replacing compiled.hex automatically * adds if statement * skip automated build branches * forces push to automated build branch * throw an add in there * upstream? * adds AUTOGEN * ignore all .hex files again * testing out new repo * global ident * generate script, keyboard_keymap.hex * skip generation for now, print pandoc info, submodule update * try trusty * and sudo * try generate * updates subprojects to keyboards * no idea * updates to keyboards * cleans up clueboard stuff * setup to use local readme * updates cluepad, planck experimental * remove extra led.c [ci skip] * disable power up for now * config files updates * makefile updates * .h file updates, config tuning * disable audio for yang
2016-06-29 20:21:41 +00:00
#!/bin/bash
set -o errexit -o nounset
rev=$(git rev-parse --short HEAD)
2017-05-30 15:46:25 +00:00
if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then
2017-05-30 16:49:26 +00:00
git config --global user.name "QMK Bot"
git config --global user.email "hello@qmk.fm"
Implements subprojects and updates projects for this (#459) * non-working commit * working * subprojects implemented for planck * pass a subproject variable through to c * consolidates clueboard revisions * thanks for letting me know about conflicts.. * turn off audio for yang's * corrects starting paths for subprojects * messing around with travis * semicolon * travis script * travis script * script for travis * correct directory (probably), amend files to commit * remove origin before adding * git pull, correct syntax * git checkout * git pull origin branch * where are we? * where are we? * merging * force things to happen * adds commit message, adds add * rebase, no commit message * rebase branch * idk! * try just pull * fetch - merge * specify repo branch * checkout * goddammit * merge? idk * pls * after all * don't split up keyboards * syntax * adds quick for all-keyboards * trying out new script * script update * lowercase * all keyboards * stop replacing compiled.hex automatically * adds if statement * skip automated build branches * forces push to automated build branch * throw an add in there * upstream? * adds AUTOGEN * ignore all .hex files again * testing out new repo * global ident * generate script, keyboard_keymap.hex * skip generation for now, print pandoc info, submodule update * try trusty * and sudo * try generate * updates subprojects to keyboards * no idea * updates to keyboards * cleans up clueboard stuff * setup to use local readme * updates cluepad, planck experimental * remove extra led.c [ci skip] * disable power up for now * config files updates * makefile updates * .h file updates, config tuning * disable audio for yang
2016-06-29 20:21:41 +00:00
2017-05-30 15:46:25 +00:00
openssl aes-256-cbc -K $encrypted_b0ee987fd0fc_key -iv $encrypted_b0ee987fd0fc_iv -in secrets.tar.enc -out secrets.tar -d
tar xvf secrets.tar
chmod 600 id_rsa_qmk_firmware
2017-05-28 20:16:56 +00:00
chmod 600 qmk.fm
eval `ssh-agent -s`
ssh-add id_rsa_qmk_firmware
2017-02-06 21:56:39 +00:00
# convert to unix line-endings
git diff --name-only -n 1 -z ${TRAVIS_COMMIT_RANGE} | xargs -0 dos2unix
git diff --name-only -n 1 -z ${TRAVIS_COMMIT_RANGE} | xargs -0 git add
git commit -m "convert to unix line-endings [skip ci]"
git push git@github.com:qmk/qmk_firmware.git
increment_version ()
{
declare -a part=( ${1//\./ } )
part[2]=$((part[2] + 1))
new="${part[*]}"
echo -e "${new// /.}"
}
2017-07-03 03:38:20 +00:00
git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE}
2017-05-28 20:16:56 +00:00
NEFM=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -Ev '^(keyboards/)' | grep -Ev '^(docs/)' | wc -l)
if [[ $NEFM -gt 0 ]] ; then
echo "Essential files modified."
2017-02-06 22:51:20 +00:00
git fetch --tags
2017-07-03 04:23:37 +00:00
#lasttag=$(git describe --tags $(git rev-list --tags --max-count=10) | grep -Ev '\-' | xargs -I@ git log --format=format:"%ai @%n" -1 @ | sort -V | awk '{print $4}' | tail -1)
lasttag=$(git describe --tags $(git rev-list --tags --max-count=10) | grep -Ev '\-' | sort -V | tail -1)
newtag=$(increment_version $lasttag)
git tag $newtag
2017-05-29 16:14:49 +00:00
git push --tags git@github.com:qmk/qmk_firmware.git
else
echo "No essential files modified."
fi
2017-02-06 21:42:18 +00:00
if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
cd ..
2017-05-28 20:16:56 +00:00
git clone git@github.com:qmk/qmk.fm.git
2017-02-06 21:42:18 +00:00
cd qmk.fm
2017-07-03 03:38:20 +00:00
mv ../qmk_firmware/qmk.fm qmk.fm
ssh-add -D
eval `ssh-agent -s`
2017-07-03 03:38:20 +00:00
ssh-add qmk.fm
2017-05-18 00:27:07 +00:00
#git submodule update --init --recursive
2017-02-07 06:35:10 +00:00
#rm -rf keyboard
#rm -rf keyboards
2017-05-18 00:27:07 +00:00
#yes | cp -rf ../qmk_firmware/keyboards .
2017-02-07 17:36:25 +00:00
#mkdir keyboards/ergodox_ez/
2017-05-18 00:27:07 +00:00
#cp ../qmk_firmware/util/ergodox_ez.html keyboards/ergodox_ez/index.html
#cp ../qmk_firmware/readme.md qmk_readme.md
#./generate.sh
rm -f _compiled/*.hex
for file in ../qmk_firmware/keyboards/*/keymaps/*/*.hex; do mv -v "$file" "_compiled/${file##*/}"; done
2017-07-03 03:38:20 +00:00
for file in ../qmk_firmware/keyboards/*/*/keymaps/*/*.hex; do mv -v "$file" "_compiled/${file##*/}"; done
2017-02-06 21:42:18 +00:00
git add -A
git commit -m "generated from qmk/qmk_firmware@${rev}"
2017-05-29 16:49:25 +00:00
git push git@github.com:qmk/qmk.fm.git
2017-02-06 21:42:18 +00:00
2017-02-06 21:56:39 +00:00
fi
2017-02-06 21:42:18 +00:00
fi