Skip to content

Commit

Permalink
.travis.yml,Makefile
Browse files Browse the repository at this point in the history
2020-11-12 16:11:07-06:00

Signed-off-by: meows <b5c6@protonmail.com>
  • Loading branch information
meowsbits committed Nov 12, 2020
1 parent db54010 commit e89f93e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
env:
- GO111MODULE=on
script:
- make all
- go run build/ci.go install -dlgo
- travis_wait 60 make test

# Run build and tests with environment-aware possible artifact deployment.
Expand All @@ -71,7 +71,7 @@ jobs:
dist: xenial
go: 1.15.x
script:
- make all
- go run build/ci.go install -dlgo
- travis_wait 60 make test
before_deploy:
- sh build/deploy.sh
Expand Down Expand Up @@ -108,7 +108,7 @@ jobs:
# Switch over GCC to cross compilation (breaks 386, hence why do it here only)
- sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install gcc-arm-linux-gnueabi libc6-dev-armel-cross gcc-arm-linux-gnueabihf libc6-dev-armhf-cross gcc-aarch64-linux-gnu libc6-dev-arm64-cross
- sudo ln -s /usr/include/asm-generic /usr/include/asm
- GOPATH=~/go_arm GOARM=5 go run build/ci.go install -arch arm -cc arm-linux-gnueabi-gcc
- GOPATH=~/go_arm GOARM=5 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabi-gcc
before_deploy:
- sh build/deploy_arm.sh
deploy:
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
- ulimit -S -n $NOFILE
- ulimit -n
- unset -f cd
- make all
- go run build/ci.go install -dlgo
before_deploy:
- sh build/deploy.sh
deploy:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ios:
@echo "Done building."
@echo "Import \"$(GOBIN)/Geth.framework\" to use the library."

test: all
test:
$(GORUN) build/ci.go test

sync-parity-chainspecs:
Expand Down

0 comments on commit e89f93e

Please sign in to comment.