Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
services:
- docker

image:
- Visual Studio 2017
- Ubuntu

install:
- git submodule update --init
- cmd: set PATH="C:\Program Files\LLVM\bin";C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin;%PATH%
- cmd: C:\Python36-x64\python -m pip install jinja2 nose pycodestyle

build_script:
- cmd: python scripts\build.py -t --python-path "C:\\Python36-x64\\python" --disable_java --require_dotnet --clean
- cmd: python scripts\build.py -t --python-path "C:\\Python36-x64\\python"
- sh: docker pull ffig/ffig-base
- sh: docker build . -t ffig-ci
- sh: docker run --cap-add SYS_PTRACE ffig-ci /bin/bash -c "./scripts/build.py -t --python-path python2 --venv"
- sh: docker run --cap-add SYS_PTRACE ffig-ci /bin/bash -c "./scripts/build.py -T \"CPP|MOCKS\" -c ASAN --python-path python2 --venv"
- sh: docker run --cap-add SYS_PTRACE ffig-ci /bin/bash -c "./scripts/build.py -t --python-path python3 --venv"
- sh: docker run --cap-add SYS_PTRACE ffig-ci /bin/bash -c "./scripts/build.py -T \"CPP|MOCKS\" -c ASAN --python-path python3 --venv"