Fix OS mismatch on debug and release jobs

This commit is contained in:
Twarit Waikar
2020-02-14 22:44:53 +05:30
committed by GitHub
parent 990ccfd0bc
commit f1e8e0ac1d

View File

@@ -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"