Skip to content

Commit

Permalink
Create appveyor.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Nov 23, 2014
1 parent c7e70e3 commit fae354e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
environment:
# USEMSVC: "1"
matrix:
- ARCH: "i686"
- ARCH: "x86_64"

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
2 changes: 1 addition & 1 deletion contrib/windows/msys_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -176,5 +176,5 @@ else
echo 'override STAGE1_DEPS += openlibm' >> Make.user
fi

make
make -j2
#make debug

0 comments on commit fae354e

Please sign in to comment.