Files
SourcetrailDB/appveyor.yml
T
2021-07-19 16:46:18 +02:00

57 lines
842 B
YAML

version: 0.0.0.{build}
image:
- Visual Studio 2017
- Ubuntu
- macos
environment:
PYTHON_BINDINGS: 1
platform: x64
configuration: Release
for:
-
matrix:
only:
- image: Visual Studio 2017
install:
- cmd: |
echo foo
build_script:
- echo Python - %PYTHON_BINDINGS%
- cmd: echo building on Windows!
-
matrix:
only:
- image: Ubuntu
install:
- sh: |
echo foo
build_script:
- echo Python - %PYTHON_BINDINGS%
- sh: echo building on Ubuntu!
-
matrix:
only:
- image: macos
install:
- sh: |
echo foo
build_script:
- echo Python - %PYTHON_BINDINGS%
- sh: echo building on Mac OS!
build_script:
- echo ERROR - Empty default script was executed!
- exit 1