Skip to content
This repository has been archived by the owner on Jan 12, 2021. It is now read-only.

ENG-1523: build and unit test goss on windows travis CI. #4

Merged
merged 1 commit into from
Apr 10, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,20 @@ go_import_path: github.com/aelsabbahy/goss
sudo: required
dist: trusty

os:
- linux
- windows

services:
- docker

before_install:
- if [ "$TRAVIS_OS_NAME" == "windows" ]; then choco install make; fi
- go get -u golang.org/x/lint/golint

script:
- make
# TODO(ENG-1523): windows does not currently support test-int-*, only unit tests executed from make.
- if [ "$TRAVIS_OS_NAME" == "windows" ]; then make lint test; else make; fi

deploy:
provider: releases
Expand Down