summaryrefslogtreecommitdiff
path: root/util/travis_push.sh
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-04-12 17:19:50 -0700
committerDrashna Jaelre <drashna@live.com>2019-04-12 17:19:50 -0700
commite2f96b9d5302930c6559bee9f88c6d7c9d1d67df (patch)
tree9cbd2c55ba96bf41c47d93cbfa61487db6dce817 /util/travis_push.sh
parentea4581cef15acc949aad2fffde8af61de81f10b6 (diff)
Streamline Travis CI scripting
We don't need anything fancy, just a few tests, and that's it. All of the QMK Firmware stuff is excessive for what we need.
Diffstat (limited to 'util/travis_push.sh')
-rwxr-xr-xutil/travis_push.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/util/travis_push.sh b/util/travis_push.sh
deleted file mode 100755
index d100f9d48f..0000000000
--- a/util/travis_push.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-# Use this by sourcing it in your script.
-
-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}"
-
-if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]] ; then
- 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
-fi