File tree 3 files changed +9
-7
lines changed
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,17 @@ environment:
7
7
clone_folder : $(GOPATH)\src\github.com\git-lfs\git-lfs
8
8
9
9
install :
10
- - rd C:\Go /s /q
11
- - cinst golang --version 1.8.0 -y
12
10
- cinst InnoSetup -y
13
11
- refreshenv
12
+ - ps : |
13
+ echo "Go directories in machine PATH environment:"
14
+ [environment]::GetEnvironmentVariable("PATH","Machine").split(";") | Select-String -Pattern "\\go\\"
15
+ echo "Go directories in user PATH environment:"
16
+ [environment]::GetEnvironmentVariable("PATH","User").split(";") | Select-String -Pattern "\\go\\"
17
+ echo "Go directories in process PATH environment:"
18
+ [environment]::GetEnvironmentVariable("PATH","Process").split(";") | Select-String -Pattern "\\go\\"
19
+ echo "Go version information:"
20
+ go version
14
21
15
22
build_script :
16
23
- bash --login -c 'GOARCH=386 script/bootstrap'
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -e
3
3
4
- go version
5
-
6
4
if uname -s | grep -q " _NT-" ; then
7
5
# Tell Cygwin / MSYS to really create symbolic links.
8
6
export CYGWIN=" $CYGWIN winsymlinks:nativestrict"
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
set -e
3
-
4
- go version
5
-
6
3
script/test
7
4
8
5
# re-run test to ensure GIT_TRACE output doesn't leak into the git package
You can’t perform that action at this time.
0 commit comments