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