From 1d6eacb11a7b667bf62155b0f50bfb96a0a3b243 Mon Sep 17 00:00:00 2001 From: Miles Lubin Date: Sat, 15 Sep 2018 07:52:39 -0400 Subject: [PATCH] enable appveyor (#70) * enable appveyor * remove outdated test/REQUIRE * allow failures on 0.7 and 1.0 --- appveyor.yml | 36 ++++++++++++++++++++++++++++++++++++ test/REQUIRE | 1 - 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 appveyor.yml delete mode 100644 test/REQUIRE diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..0d3293a --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,36 @@ +environment: + matrix: + - julia_version: 0.6 + - julia_version: 0.7 + - julia_version: 1.0 + +platform: + - x86 # 32-bit + - x64 # 64-bit + +# See https://github.com/JuliaOpt/Cbc.jl/issues/56. +matrix: + allow_failures: + - julia_version: 0.7 + - julia_version: 1.0 + +branches: + only: + - master + +notifications: + - provider: Email + on_build_success: false + on_build_failure: false + on_build_status_changed: false + +install: + - ps: iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1")) + +build_script: + - echo "%JL_BUILD_SCRIPT%" + - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%" + +test_script: + - echo "%JL_TEST_SCRIPT%" + - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%" diff --git a/test/REQUIRE b/test/REQUIRE deleted file mode 100644 index dbe3655..0000000 --- a/test/REQUIRE +++ /dev/null @@ -1 +0,0 @@ -OffsetArrays