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

RFC: Windows CI #6028

Merged
merged 1 commit into from
Nov 25, 2014
Merged
Show file tree
Hide file tree
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
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