Skip to content

Commit de7d128

Browse files
authored
Set up the package structure (#1)
1 parent 9de5668 commit de7d128

File tree

6 files changed

+57
-0
lines changed

6 files changed

+57
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.jl.cov
2+
*.jl.*.cov
3+
*.jl.mem

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Documentation: http://docs.travis-ci.com/user/languages/julia/
2+
language: julia
3+
os:
4+
- linux
5+
- osx
6+
julia:
7+
- 0.4
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("Git"); Pkg.test("Git"; coverage=true)'
15+
after_success:
16+
- julia -e 'cd(Pkg.dir("Git")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Git.jl
2+
3+
Julia wrapper for command line Git

REQUIRE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
julia 0.4

appveyor.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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:\projects\julia-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(), \"Git\"); Pkg.build(\"Git\")"
32+
33+
test_script:
34+
- C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"Git\")"
File renamed without changes.

0 commit comments

Comments
 (0)