Revision 5026db014a254582108f8ce32454f8c80badd05e authored by Rafael Fourquet on 27 November 2014, 10:20:46 UTC, committed by Rafael Fourquet on 27 November 2014, 12:31:20 UTC
1 parent df7a9d5
Raw File
appveyor.yml
environment:
#  USEMSVC: "1"
  matrix:
  - ARCH: "i686"
  - ARCH: "x86_64"

# Only build on master and PR's for now, not personal branches
# Whether or not PR's get built is determined in the webhook settings
branches:
  only:
    - master
# TODO: - release-0.3

clone_depth: 50

init:
# Carriage returns are bad
  - git config --global core.autocrlf input

build_script:
# temporarily disable backtrace test, failing right now for win64 on master
  - sed -i 's/"backtrace",//' test/runtests.jl
# Remove C:\MinGW\bin from the path, the version of MinGW installed on
# AppVeyor is not compatible with the cross-compiled Julia Windows binaries
  - set PATH=%PATH:C:\MinGW\bin;=%
#  - '"%VS120COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64'
# Since the AppVeyor VMs have Git installed, they have MSYS1
  - sh --login /c/projects/julia/contrib/windows/msys_build.sh

test_script:
  - cd test && ..\usr\bin\julia runtests.jl all
back to top