mirror of
https://gitee.com/openharmony/third_party_ninja
synced 2024-11-22 23:09:46 +00:00
e9e12353f0
Signed-off-by: liangxinyan <liangxinyan2@huawei.com>
41 lines
851 B
YAML
41 lines
851 B
YAML
version: 1.0.{build}
|
|
image:
|
|
- Visual Studio 2017
|
|
- Ubuntu1804
|
|
|
|
environment:
|
|
CLICOLOR_FORCE: 1
|
|
CHERE_INVOKING: 1 # Tell Bash to inherit the current working directory
|
|
matrix:
|
|
- MSYSTEM: MINGW64
|
|
- MSYSTEM: LINUX
|
|
|
|
matrix:
|
|
exclude:
|
|
- image: Visual Studio 2017
|
|
MSYSTEM: LINUX
|
|
- image: Ubuntu1804
|
|
MSYSTEM: MINGW64
|
|
|
|
for:
|
|
-
|
|
matrix:
|
|
only:
|
|
- MSYSTEM: MINGW64
|
|
build_script:
|
|
ps: "C:\\msys64\\usr\\bin\\bash -lc @\"\n
|
|
pacman -S --quiet --noconfirm --needed re2c 2>&1\n
|
|
./configure.py --bootstrap --platform mingw 2>&1\n
|
|
./ninja all\n
|
|
./misc/ninja_syntax_test.py 2>&1\n\"@"
|
|
- matrix:
|
|
only:
|
|
- image: Ubuntu1804
|
|
build_script:
|
|
- ./configure.py --bootstrap
|
|
- ./ninja all
|
|
- misc/ninja_syntax_test.py
|
|
- misc/output_test.py
|
|
|
|
test: off
|