From f1e8e0ac1dc68c2ed65fe1f47dc29989ce1d3af4 Mon Sep 17 00:00:00 2001 From: Twarit Waikar Date: Fri, 14 Feb 2020 22:44:53 +0530 Subject: [PATCH] Fix OS mismatch on debug and release jobs --- .travis.yml | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 66f06b8..f59e911 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,11 @@ language: cpp -os: - - windows - - linux -jobs: +matrix: include: - - name: linux-debug - script: ./build_libs_debug.sh && scons platform=x11 target=debug -j6 - - name: linux-release - script: ./build_libs_release.sh && scons platform=x11 target=release -j6 - - name: windows-debug - script: ./build_libs_debug.bat & scons platform=windows target=debug -j6 - - name: windows-release - script: ./build_libs_release.bat & scons platform=windows target=release -j6 + - os: linux + script: + - "./build_libs_debug.sh && scons platform=x11 target=debug" + + - os: windows + script: + - "./build_libs_debug.bat & scons platform=windows target=debug"