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

65 lines
1.8 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: Wed Jan 20 15:28:12 2016 +0000
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
# ============================================================================ #
# T r a v i s C I
# ============================================================================ #
# Travis bash autocomplete
# adapted from Travis ruby gem auto-added to end of ~/.bashrc
# shellcheck disable=SC1090,SC1091
#[ -f ~/.travis/travis.sh ] && source ~/.travis/travis.sh
bash_tools="${bash_tools:-$(dirname "${BASH_SOURCE[0]}")/..}"
type git_repo &>/dev/null || . "$bash_tools/.bash.d/git.sh"
type browse &>/dev/null || . "$bash_tools/.bash.d/network.sh"
alias trav='travis_browse'
travis_browse(){
local repo
repo="$(github_repo)"
url="https://travis-ci.org/${TRAVIS_USER:-${USER:-$(whoami)}}/$repo"
browser "$url"
}
# for auto authentication using Travis CI tools like travis_last_log.py and travis_debug_session.py
#export TRAVIS_TOKEN=...
travis_debug(){
# code has better automatic handling, doesn't need this now
#if grep '/' <<< "$1" &>/dev/null; then
# travis_debug_session.py -r "$1" ${@:2}
#else
# travis_debug_session.py -J "$1" ${@:2}
#fi
opts=()
if [[ "$PWD" =~ /github/ ]]; then
local repo
repo="$(git_repo)"
if [ -n "$repo" ]; then
opts+=(--repo "$repo")
fi
fi
travis_debug_session.py "${opts[@]}" "$@"
}
travis_log(){
local repo
repo="$(git_repo)"
travis_last_log.py --failed "$repo" "$@"
}