File tree Expand file tree Collapse file tree 8 files changed +559
-0
lines changed Expand file tree Collapse file tree 8 files changed +559
-0
lines changed Original file line number Diff line number Diff line change 1+ * .jl.cov
2+ * .jl. * .cov
3+ * .jl.mem
Original file line number Diff line number Diff line change 1+ # Documentation: http://docs.travis-ci.com/user/languages/julia/
2+ language : julia
3+ os :
4+ - linux
5+ - osx
6+ julia :
7+ - release
8+ - nightly
9+ notifications :
10+ email : false
11+ # uncomment the following lines to override the default test script
12+ # script:
13+ # - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
14+ # - julia -e 'Pkg.clone(pwd()); Pkg.build("iconv"); Pkg.test("iconv"; coverage=true)'
15+ after_success :
16+ # push coverage results to Coveralls
17+ - julia -e 'cd(Pkg.dir("iconv")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
18+ # push coverage results to Codecov
19+ - julia -e 'cd(Pkg.dir("iconv")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1+ # iconv
2+
3+ [ ![ Build Status] ( https://travis-ci.org/nalimilan/iconv.jl.svg?branch=master )] ( https://travis-ci.org/nalimilan/iconv.jl )
4+
5+ [ ![ Coverage Status] ( https://coveralls.io/repos/nalimilan/iconv.jl/badge.svg?branch=master&service=github )] ( https://coveralls.io/github/nalimilan/iconv.jl?branch=master )
6+
7+ [ ![ codecov.io] ( http://codecov.io/github/nalimilan/iconv.jl/coverage.svg?branch=master )] ( http://codecov.io/github/nalimilan/iconv.jl?branch=master )
Original file line number Diff line number Diff line change 1+ julia 0.4
Original file line number Diff line number Diff line change 1+ environment :
2+ matrix :
3+ - JULIAVERSION : " julialang/bin/winnt/x86/0.4/julia-0.4-latest-win32.exe"
4+ - JULIAVERSION : " julialang/bin/winnt/x64/0.4/julia-0.4-latest-win64.exe"
5+ - JULIAVERSION : " julianightlies/bin/winnt/x86/julia-latest-win32.exe"
6+ - JULIAVERSION : " julianightlies/bin/winnt/x64/julia-latest-win64.exe"
7+
8+ branches :
9+ only :
10+ - master
11+ - /release-.*/
12+
13+ notifications :
14+ - provider : Email
15+ on_build_success : false
16+ on_build_failure : false
17+ on_build_status_changed : false
18+
19+ install :
20+ # Download most recent Julia Windows binary
21+ - ps : (new-object net.webclient).DownloadFile(
22+ $("http://s3.amazonaws.com/"+$env:JULIAVERSION),
23+ " C:\p rojects\j ulia-binary.exe" )
24+ # Run installer silently, output to C:\projects\julia
25+ - C:\projects\julia-binary.exe /S /D=C:\projects\julia
26+
27+ build_script :
28+ # Need to convert from shallow to complete for Pkg.clone to work
29+ - IF EXIST .git\shallow (git fetch --unshallow)
30+ - C:\projects\julia\bin\julia -e "versioninfo();
31+ Pkg.clone(pwd(), \"iconv\"); Pkg.build(\"iconv\")"
32+
33+ test_script :
34+ - C:\projects\julia\bin\julia -e "Pkg.test(\"iconv\")"
Original file line number Diff line number Diff line change 1+ module iconv
2+
3+ # package code goes here
4+
5+ end # module
Original file line number Diff line number Diff line change 1+ using iconv
2+ using Base. Test
3+
4+ # write your own tests here
5+ @test 1 == 1
You can’t perform that action at this time.
0 commit comments