From db120b75e36c0e323905fd489b4411bc548c2c4b Mon Sep 17 00:00:00 2001 From: stdevYuniers Date: Tue, 4 Dec 2018 15:57:37 -0500 Subject: [PATCH] [ci] refs #7 Use direct folder instead of %VAR% when do --- .appveyor.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index fc8648f6..16960216 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -13,8 +13,8 @@ environment: global: GOOS: windows GOARCH: amd64 - GOPATH: C:\projects\libskycoin-dotnet\gopath - MINGW_W64: C:\mingw-w64\x86_64-7.3.0-posix-seh-rt_v5-rev0\mingw64 + GOPATH: c:\projects\libskycoin-dotnet\gopath + MINGW_W64: c:\mingw-w64\x86_64-7.3.0-posix-seh-rt_v5-rev0\mingw64 # APPVEYOR_RDP_PASSWORD: defineYourPasswordHere stack: go 1.11 @@ -29,11 +29,11 @@ install: - cmd: cp %MINGW_W64%\bin\mingw32-make.exe %MINGW_W64%\bin\make.exe - cmd: git submodule update --init --recursive --remote - echo %GOPATH% - - cmd: cd %GOPATH%\ + - cmd: cd c:\projects\libskycoin-dotnet\gopath - cmd: git checkout origin/stdevEclipse_t1568_swig_files - cmd: go get github.com/gz-c/gox - cmd: go get -t ./... - - cmd: cd %APPVEYOR_BUILD_FOLDER% + - cmd: cd c:\projects\libskycoin-dotnet - cmd: curl -fsSL -o swigwin-3.0.12.zip "https://downloads.sourceforge.net/project/swig/swigwin/swigwin-3.0.12/swigwin-3.0.12.zip?r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fswig%2Ffiles%2Fswigwin%2Fswigwin-3.0.12%2Fswigwin-3.0.12.zip%2Fdownload%3Fuse_mirror%3Dayera&ts=1531774939" - cmd: 7z x swigwin-3.0.12.zip - cmd: set PATH=%APPVEYOR_BUILD_FOLDER%\swigwin-3.0.12;%PATH% @@ -42,7 +42,7 @@ install: # scripts to run before build # packages from nuget before_build: - - cd %APPVEYOR_BUILD_FOLDER% + - cd c:\projects\libskycoin-dotnet - nuget restore LibskycoinNet.sln - nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner