File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
1
+ environment :
2
+ matrix :
3
+ - julia_version : 1
4
+ - julia_version : 1.1
5
+ - julia_version : 1.2
6
+ - julia_version : nightly
7
+
8
+ platform :
9
+ - x86 # 32-bit
10
+ - x64 # 64-bit
11
+
12
+ # # Uncomment the following lines to allow failures on nightly julia
13
+ # # (tests will run but not make your overall status red)
14
+ # matrix:
15
+ # allow_failures:
16
+ # - julia_version: nightly
17
+
18
+ branches :
19
+ only :
20
+ - master
21
+ - /release-.*/
22
+
23
+ notifications :
24
+ - provider : Email
25
+ on_build_success : false
26
+ on_build_failure : false
27
+ on_build_status_changed : false
28
+
29
+ install :
30
+ - ps : iex ((new-object net.webclient).DownloadString("https://raw.githubusercontent.com/JuliaCI/Appveyor.jl/version-1/bin/install.ps1"))
31
+
32
+ build_script :
33
+ - echo "%JL_BUILD_SCRIPT%"
34
+ - C:\julia\bin\julia -e "%JL_BUILD_SCRIPT%"
35
+
36
+ test_script :
37
+ - echo "%JL_TEST_SCRIPT%"
38
+ - C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"
39
+
40
+ # # Uncomment to support code coverage upload. Should only be enabled for packages
41
+ # # which would have coverage gaps without running on Windows
42
+ # on_success:
43
+ # - echo "%JL_CODECOV_SCRIPT%"
44
+ # - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"
You can’t perform that action at this time.
0 commit comments