Skip to content

Commit d499cf5

Browse files
author
Vincent Demeester
authored
Merge pull request #114 from n4ss/fix-travisci-osxkeychain
fix osxkeychain ci
2 parents 19b711c + b049338 commit d499cf5

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.travis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,26 @@
33
sudo: required
44
language: go
55
dist: trusty
6+
osx_image: xcode9
67
os:
78
- linux
89
- osx
910
notifications:
1011
email: false
1112
go:
12-
- 1.8
13-
install: make deps
13+
- 1.8.1
14+
before_install:
15+
# work-around for issue https://github.com/travis-ci/travis-ci/issues/6307
16+
# might not be necessary in the future
17+
- command curl -sSL https://rvm.io/mpapis.asc | gpg --import -
18+
- rvm get stable
1419
addons:
1520
apt:
1621
packages:
1722
- libsecret-1-dev
1823
- pass
1924
before_script:
25+
- make deps
2026
- "export DISPLAY=:99.0"
2127
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sh ci/before_script_linux.sh; fi
2228
- make validate

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ image: Visual Studio 2015
22
environment:
33
GOPATH: c:\gopath
44

5+
stack: go 1.8.7
6+
57
clone_folder: c:\gopath\src\github.com\docker\docker-credential-helpers
68
clone_depth: 10
79

810
before_build:
911
- set PATH=%PATH%;C:\MinGW\bin;
10-
- set PATH=%PATH%;C:\go18\bin;
11-
- set GOROOT=C:\go18
1212

1313
build_script:
1414
- mingw32-make vet_win wincred

0 commit comments

Comments
 (0)