diff options
| -rw-r--r-- | .travis.yml | 18 | ||||
| -rw-r--r-- | appveyor.yml | 10 |
2 files changed, 13 insertions, 15 deletions
diff --git a/.travis.yml b/.travis.yml index 0b2df0bb0..0df1414a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,18 +4,20 @@ os: - linux - osx -branches: - only: - - master - - dev - install: + - cd .. + - cp -r xmake xmake4build + - cd xmake4build - sudo ./install - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update --verbose; fi - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install dmd --verbose; fi - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install rust --verbose; fi script: - - xmake create -P ./test - - xmake -P ./test - - ./tests/tests + - cd ../xmake/core + - xmake -v + - sudo cp -v build/xmake /usr/local/share/xmake + - xmake --version + - xmake create test_project + - cd test_project + - xmake diff --git a/appveyor.yml b/appveyor.yml index b8a88d8b5..51b27fb35 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -14,10 +14,6 @@ before_build: - cmd: dir C:\xmake build_script: - - cmd: cd tests\console_c - - cmd: if %platform%==Win32 xmake f -m debug - - cmd: if %platform%==Win64 xmake f -m debug -a x64 - - cmd: xmake - -test_script: - - cmd: xmake --version + - cmd: cd core + - cmd: if %platform%==Win64 xmake f -a x64 + - cmd: xmake -v |
