You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
2.8 KiB

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
8 years ago
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
8 years ago
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
8 years ago
6 years ago
7 years ago
  1. #!/bin/bash
  2. source util/travis_utils.sh
  3. source util/travis_push.sh
  4. set -o errexit -o nounset
  5. rev=$(git rev-parse --short HEAD)
  6. echo "Using git hash ${rev}"
  7. if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then
  8. # fix formatting
  9. git checkout master
  10. git diff --diff-filter=AM --name-only -n 1 -z ${TRAVIS_COMMIT_RANGE} | xargs -0 dos2unix
  11. git diff --diff-filter=AM --name-only -n 1 -z ${TRAVIS_COMMIT_RANGE} '*.c' '*.h' '*.cpp' | grep -z -e '^drivers' -e '^quantum' -e '^tests' -e '^tmk_core' | grep -zv -e 'quantum/template' -e 'tmk_core/protocol/usb_hid' -e 'platforms/chibios' | xargs -0 clang-format-7 -i
  12. git diff --diff-filter=AM --name-only -n 1 -z ${TRAVIS_COMMIT_RANGE} | xargs -0 git add
  13. git commit -m "format code according to conventions [skip ci]" && git push git@github.com:qmk/qmk_firmware.git master
  14. increment_version ()
  15. {
  16. declare -a part=( ${1//\./ } )
  17. part[2]=$((part[2] + 1))
  18. new="${part[*]}"
  19. echo -e "${new// /.}"
  20. }
  21. git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE}
  22. NEFM=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -Ev '^(keyboards/)' | grep -Ev '^(docs/)' | grep -Ev '^(users/)' | grep -Ev '^(layouts/)' | wc -l)
  23. if [[ $NEFM -gt 0 ]] ; then
  24. echo "Essential files modified."
  25. git fetch --tags
  26. lasttag=$(git tag --sort=-creatordate --no-column --list '*.*.*' | grep -E -m1 '^[0-9]+\.[0-9]+\.[0-9]+$')
  27. newtag=$(increment_version $lasttag)
  28. until git tag $newtag; do
  29. newtag=$(increment_version $newtag)
  30. done
  31. git push --tags git@github.com:qmk/qmk_firmware.git
  32. else
  33. echo "No essential files modified."
  34. fi
  35. if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
  36. make generate-keyboards-file SILENT=true > .keyboards
  37. cd ..
  38. git clone git@github.com:qmk/qmk.fm.git
  39. cd qmk.fm
  40. mv ../qmk_firmware/id_rsa_qmk.fm id_rsa_qmk.fm
  41. mv ../qmk_firmware/.keyboards .
  42. ssh-add -D
  43. eval `ssh-agent -s`
  44. ssh-add id_rsa_qmk.fm
  45. # don't delete files in case not all keyboards are built
  46. # rm -f compiled/*.hex
  47. # ignore errors here
  48. # In theory, this is more flexible, and will allow for additional expansion of additional types of files and other names
  49. mv ../qmk_firmware/*_default.*{hex,bin} ./compiled/ || true
  50. # get the list of keyboards
  51. readarray -t keyboards < .keyboards
  52. # replace / with _
  53. keyboards=("${keyboards[@]//[\/]/_}")
  54. # remove all binaries that don't belong to a keyboard in .keyboards
  55. for file in "./compiled"/* ; do
  56. match=0
  57. for keyboard in "${keyboards[@]}" ; do
  58. if [[ ${file##*/} = "${keyboard}_default.bin" ]] || [[ ${file##*/} = "${keyboard}_default.hex" ]]; then
  59. match=1
  60. break
  61. fi
  62. done
  63. if [[ $match = 0 ]]; then
  64. echo "Removing deprecated binary: $file"
  65. rm "$file"
  66. fi
  67. done
  68. bash _util/generate_keyboard_page.sh
  69. git add -A
  70. git commit -m "generated from qmk/qmk_firmware@${rev}"
  71. git push git@github.com:qmk/qmk.fm.git
  72. fi
  73. fi