-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
52 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
version: "{branch}-ci-{build}" | ||
image: Visual Studio 2017 | ||
|
||
|
||
environment: | ||
matrix: | ||
- build: g++ | ||
platform: x64 | ||
MINGW_ROOT: C:\msys64\mingw64 | ||
BOOST_ROOT: C:\msys64\mingw64\include\boost | ||
LIBELF_INCLUDE: C:\msys64\mingw64\include\libelf | ||
MINGW_ARCH: x86_64 | ||
MSYSTEM: MINGW64 | ||
|
||
|
||
install: | ||
- set PATH="c:\minGW";c:\MinGW\bin;%MINGW_ROOT%;%MINGW_ROOT%\bin;C:\msys64\usr\bin\;"C:\Program Files\LLVM\bin";%PATH% | ||
- bash -lc "pacman --needed --noconfirm -S mingw-w64-%MINGW_ARCH%-libelf" | ||
- bash -lc "pacman --needed --noconfirm -S mingw-w64-%MINGW_ARCH%-boost" | ||
- set CPATH=%LIBELF_INCLUDE%;%CPATH% | ||
- set CPLUS_INCLUDE_PATH=%LIBELF_INCLUDE%;%BOOST_ROOT%;%CPLUS_INCLUDE_PATH% | ||
- set BINARY_NAME=dinamo-windows-%platform%.exe | ||
|
||
|
||
build_script: | ||
- bash -lc "exec 0</dev/null && cd $APPVEYOR_BUILD_FOLDER && make " | ||
# - bash -lc "cd $APPVEYOR_BUILD_FOLDER && scripts/run_tests.sh" ## RUN TESTS ON LINUX ONLY (WITH TRAVIS) | ||
- bash -lc true | ||
|
||
artifacts: | ||
- path: bin\%BINARY_NAME% | ||
name: Releases | ||
|
||
deploy: | ||
#release: DiNAMO-v$(APPVEYOR_REPO_TAG) | ||
description: 'Mac OSX, Linux and Windows 64 binaries' | ||
provider: GitHub | ||
auth_token: | ||
secure: 4pbkaIiW4tf9KoszzJw02C1c5Levwbj1F2jmZIARZlmwdI67OSEiJFaQJ1EMHTdQ | ||
artifact: /dinamo/ | ||
draft: false | ||
prerelease: false | ||
on: | ||
appveyor_repo_tag: true | ||
platform: x64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ matrix: | |
|
||
|
||
- os: osx | ||
osx_image: xcode8 | ||
osx_image: xcode8.2 | ||
compiler: clang | ||
sudo: false | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters