Skip to content

Commit

Permalink
[ci] refs #17 - Force build
Browse files Browse the repository at this point in the history
  • Loading branch information
stdevNorge committed Jun 26, 2018
1 parent 8c0e705 commit 56bcd02
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
11 changes: 6 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Compilation output
PWD = $(shell pwd)
ifeq ($(OS),"win")
GOPATH = "c:\gopath"
endif
GOPATH_DIR = $(PWD)/gopath
SKYCOIN_DIR = gopath/src/github.com/skycoin/skycoin
ifeq ($(OS),Windows_NT)
GOPATH = "c:\gopath"
else
GOPATH="$(GOPATH_DIR)"
endifSKYCOIN_DIR = gopath/src/github.com/skycoin/skycoin
SKYBUILD_DIR = $(SKYCOIN_DIR)/build
BUILDLIBC_DIR = $(SKYBUILD_DIR)/libskycoin
LIBC_DIR = $(SKYCOIN_DIR)/lib/cgo
Expand All @@ -22,7 +23,7 @@ configure:
mkdir -p $(BUILDLIBC_DIR) $(BIN_DIR) $(INCLUDE_DIR)

$(BUILDLIBC_DIR)/libskycoin.a: $(LIB_FILES) $(SRC_FILES)
cd $(SKYCOIN_DIR) && GOPATH="$(GOPATH_DIR)" make build-libc-static
cd $(SKYCOIN_DIR) && make build-libc-static
grep -v _Complex $(INCLUDE_DIR)/libskycoin.h > swig/include/libskycoin.h

## Build libskycoin C client library
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ environment:
CYG_MIRROR: http://cygwin.mirror.constant.com
CYG_CACHE: C:\cygwin64\var\cache\setup
CYG_BASH: C:\cygwin64\bin\bash
OS: win
OS: win # Eliminar si funciona el Makefile

matrix:
- PYTHON: "C:\\Python27"
Expand Down

0 comments on commit 56bcd02

Please sign in to comment.