Re enable testing on travis windows (#423)

* re-enable testing on windows with travis
* add diagnostic/debug output
pull/425/head
Josh Rabinowitz 6 years ago committed by GitHub
parent 7a730e4a4f
commit 9b83d9cee6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -2,6 +2,8 @@
set -e
echo "Debug: In .ci/before_script.sh"
# Linux helper functions:
function update_linux() {
sudo apt-get update -qq
@ -29,6 +31,7 @@ fi
# Windows
if [[ "$GITSECRET_DIST" == "windows" ]]; then
echo "Debug: Running: 'choco install make shellcheck -y'"
choco install make shellcheck -y
fi
@ -37,3 +40,5 @@ if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ -n "$KITCHEN_REGEXP" ]]; then
update_linux
install_ansible
fi
echo "Debug: Exiting .ci/before_script.sh"

@ -3,10 +3,10 @@ dist: xenial
matrix:
fast_finish: true
include:
#- os: windows
# env: GITSECRET_DIST="windows"
# sudo: required
# language: sh
- os: windows
env: GITSECRET_DIST="windows"
sudo: required
language: sh
- os: osx
env: GITSECRET_DIST="brew"
sudo: required

Loading…
Cancel
Save