41 lines
699 B
YAML
41 lines
699 B
YAML
version: 0.0.0.{build}
|
|
|
|
image:
|
|
- Visual Studio 2017
|
|
- Ubuntu
|
|
- macos
|
|
|
|
platform: x64
|
|
|
|
configuration: Release
|
|
|
|
for:
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2017
|
|
install:
|
|
- cmd: echo installing on Windows!
|
|
build_script:
|
|
- cmd: echo building on Windows!
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Ubuntu
|
|
install:
|
|
- sh: echo installing on Ubuntu!
|
|
build_script:
|
|
- sh: echo running on Ubuntu!
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: macos
|
|
install:
|
|
- sh: echo installing on Mac OS!
|
|
build_script:
|
|
- sh: echo running on Mac OS!
|
|
|
|
|
|
build_script:
|
|
- echo ERROR - Empty default script was executed!
|
|
- exit 1 |