mirror of
https://github.com/ipfs/kubo.git
synced 2025-08-06 19:44:01 +08:00

Build scripts should never touch user's environment. This patch intoduces existance and version check for gx and gx-go Prints nice error message if they are missing or outdated. License: MIT Signed-off-by: Jakub Sztandera <kubuxu@gmail.com>
29 lines
364 B
YAML
29 lines
364 B
YAML
# dist: trusty # KVM Setup
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
language: go
|
|
|
|
go:
|
|
- 1.5.2
|
|
|
|
env:
|
|
- TEST_NO_FUSE=1 TEST_VERBOSE=1 TEST_SUITE=test_go_expensive
|
|
- TEST_NO_FUSE=1 TEST_VERBOSE=1 TEST_SUITE=test_sharness_expensive
|
|
|
|
install:
|
|
- make toolkit_upgrade
|
|
- make install
|
|
|
|
script:
|
|
- make $TEST_SUITE
|
|
|
|
# For docker containers
|
|
|
|
sudo: required
|
|
|
|
services:
|
|
- docker
|