From e2f96b9d5302930c6559bee9f88c6d7c9d1d67df Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Fri, 12 Apr 2019 17:19:50 -0700 Subject: 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. --- util/travis_push.sh | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 util/travis_push.sh (limited to 'util/travis_push.sh') 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 -- cgit v1.2.3