Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Windows CI #595

Merged
merged 3 commits into from
Mar 11, 2020
Merged
Changes from 1 commit
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
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
language: cpp

matrix:

allow_failures:
- os: windows

include:
- os: linux
compiler: gcc
Expand Down Expand Up @@ -49,6 +53,17 @@ matrix:
env:
- CC=clang-4.0 CXX=clang++-4.0 CHECK=true INTEGRATION=false

- language: bash
os: windows
script:
- choco uninstall -y mingw
- choco install -y winfsp
- choco install -y cyg-get
- cyg-get.bat cmake make gcc-g++ gettext-devel libssl-devel procps-ng perl-test-harness
- export CHERE_INVOKING=1
- cmd.exe /c "/C/tools/cygwin/bin/bash.exe --login -c 'cd /cygdrive/c/Program*/WinFsp/opt/cygfuse ; sh install.sh'"
- cmd.exe /c "/C/tools/cygwin/bin/bash.exe --login -c './build.sh'"

- os: osx
compiler: clang
osx_image: xcode9.2
Expand Down