Skip to content

Commit

Permalink
- disable native Windows paths
Browse files Browse the repository at this point in the history
- remove nim-beacon-chain CI test on Windows (not yet supported)
  • Loading branch information
stefantalpalaru committed Mar 28, 2019
1 parent f2bcf35 commit 63d95c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 0 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ test_script:
- build\nimbus.exe --help
- mingw32-make -j2 ARCH_OVERRIDE=%PLATFORM% V=0 NIMFLAGS="-d:release" test
- IF "%PLATFORM%" == "x64" mingw32-make -j2 test-reproducibility
- mingw32-make -C vendor/nim-beacon-chain -j2 V=0 test

deploy: off

7 changes: 5 additions & 2 deletions env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ PWD_CMD="pwd"
uname | grep -qi mingw && PWD_CMD="pwd -W"

rel_path="$(dirname $0)"
abs_path="$(cd $rel_path; ${PWD_CMD})"
abs_path="$(cd $rel_path; pwd)"
# do we still need this?
abs_path_native="$(cd $rel_path; ${PWD_CMD})"

# used by libp2p/go-libp2p-daemon
export GOPATH="${abs_path}/vendor/go"
export GO111MODULE=on

# make it an absolute path, so we can call this script from other dirs
#- make it an absolute path, so we can call this script from other dirs
#- we can't use native Windows paths in here, because colons can't be escaped in PATH
export PATH="${abs_path}/vendor/Nim/bin:${GOPATH}/bin:${PATH}"

# Nimble needs this to be an absolute path
Expand Down

0 comments on commit 63d95c3

Please sign in to comment.