Hopefully fix Travis Auto-Incrementation
This reverts the changes in #2491, so that Travis will hopefully return to automatic incrementing. But this includes the layout and userspace excepts, as well.daktil_thumb_popravljen
parent
c2bec5b3f0
commit
c31f7ff91b
|
@ -1,13 +1,26 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
TRAVIS_BRANCH="${TRAVIS_BRANCH:master}"
|
||||||
|
TRAVIS_PULL_REQUEST="${TRAVIS_PULL_REQUEST:false}"
|
||||||
|
TRAVIS_COMMIT_MESSAGE="${TRAVIS_COMMIT_MESSAGE:-none}"
|
||||||
|
TRAVIS_COMMIT_RANGE="${TRAVIS_COMMIT_RANGE:-HEAD~1..HEAD}"
|
||||||
|
|
||||||
set -o errexit -o nounset
|
set -o errexit -o nounset
|
||||||
|
|
||||||
source util/travis_push.sh
|
|
||||||
rev=$(git rev-parse --short HEAD)
|
rev=$(git rev-parse --short HEAD)
|
||||||
|
|
||||||
if ! [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then
|
if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then
|
||||||
exit 0
|
|
||||||
fi
|
git config --global user.name "QMK Bot"
|
||||||
|
git config --global user.email "hello@qmk.fm"
|
||||||
|
|
||||||
|
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
|
||||||
|
chmod 600 id_rsa_qmk.fm
|
||||||
|
eval `ssh-agent -s`
|
||||||
|
ssh-add id_rsa_qmk_firmware
|
||||||
|
|
||||||
# convert to unix line-endings
|
# convert to unix line-endings
|
||||||
git checkout master
|
git checkout master
|
||||||
|
@ -15,12 +28,13 @@ git diff --diff-filter=M --name-only -n 1 -z ${TRAVIS_COMMIT_RANGE} | xargs -0 d
|
||||||
git diff --diff-filter=M --name-only -n 1 -z ${TRAVIS_COMMIT_RANGE} | xargs -0 git add
|
git diff --diff-filter=M --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 master
|
git commit -m "convert to unix line-endings [skip ci]" && git push git@github.com:qmk/qmk_firmware.git master
|
||||||
|
|
||||||
increment_version () {
|
increment_version ()
|
||||||
declare -a part=( ${1//\./ } )
|
{
|
||||||
part[2]=$((part[2] + 1))
|
declare -a part=( ${1//\./ } )
|
||||||
new="${part[*]}"
|
part[2]=$((part[2] + 1))
|
||||||
echo -e "${new// /.}"
|
new="${part[*]}"
|
||||||
}
|
echo -e "${new// /.}"
|
||||||
|
}
|
||||||
|
|
||||||
git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE}
|
git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE}
|
||||||
|
|
||||||
|
@ -49,7 +63,7 @@ if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
|
||||||
ssh-add -D
|
ssh-add -D
|
||||||
eval `ssh-agent -s`
|
eval `ssh-agent -s`
|
||||||
ssh-add id_rsa_qmk.fm
|
ssh-add id_rsa_qmk.fm
|
||||||
|
|
||||||
# don't delete files in case not all keyboards are built
|
# don't delete files in case not all keyboards are built
|
||||||
# rm -f compiled/*.hex
|
# rm -f compiled/*.hex
|
||||||
|
|
||||||
|
@ -60,6 +74,9 @@ if [[ "$TRAVIS_COMMIT_MESSAGE" != *"[skip build]"* ]] ; then
|
||||||
for file in ../qmk_firmware/keyboards/*/*/*/*/keymaps/*/*_default.hex; do mv -v "$file" "compiled/${file##*/}" || true; done
|
for file in ../qmk_firmware/keyboards/*/*/*/*/keymaps/*/*_default.hex; do mv -v "$file" "compiled/${file##*/}" || true; done
|
||||||
bash _util/generate_keyboard_page.sh
|
bash _util/generate_keyboard_page.sh
|
||||||
git add -A
|
git add -A
|
||||||
git commit -m "generated from qmk/qmk_firmware@${rev}"
|
git commit -m "generated from qmk/qmk_firmware@${rev}"
|
||||||
git push git@github.com:qmk/qmk.fm.git
|
git push git@github.com:qmk/qmk.fm.git
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue