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