diff options
| author | ruki <[email protected]> | 2017-02-27 11:45:33 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-02-27 11:45:33 +0800 |
| commit | 7e887ad68ba8c51dff9f85b76c75bfa97247fb91 (patch) | |
| tree | 821d71c614ac722bfd324fab2bc8b5e4e7f63bfc | |
| parent | 6822a4603c33f69bb99d638156f589fd710d13c4 (diff) | |
remove go from macosx travis
| -rw-r--r-- | .travis.yml | 8 | ||||
| -rwxr-xr-x | tests/tests | 24 |
2 files changed, 12 insertions, 20 deletions
diff --git a/.travis.yml b/.travis.yml index 4cf45cebf..0b2df0bb0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,17 +9,9 @@ branches: - master - dev -addons: - apt: - packages: - - dmd - - rust - - go - install: - sudo ./install - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update --verbose; fi - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install go --verbose; fi - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install dmd --verbose; fi - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install rust --verbose; fi diff --git a/tests/tests b/tests/tests index 0cf0809f3..b83c831d2 100755 --- a/tests/tests +++ b/tests/tests @@ -48,18 +48,6 @@ build "./tests/console_c++" build "./tests/static_library_c++" build "./tests/shared_library_c++" -# build for go -build "./tests/console_go" -build "./tests/static_library_go" - -# build for dlang -build "./tests/console_dlang" -build "./tests/static_library_dlang" - -# build for rust -build "./tests/console_rust" -build "./tests/static_library_rust" - # merge object build "./tests/merge_object" @@ -75,5 +63,17 @@ if [ $host = "macosx" ]; then # build for swift build "./tests/console_swift" + + # build for go + build "./tests/console_go" + build "./tests/static_library_go" + + # build for dlang + build "./tests/console_dlang" + build "./tests/static_library_dlang" + + # build for rust + build "./tests/console_rust" + build "./tests/static_library_rust" fi |
