diff options
| -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 |
