Skip to content

Commit b02a2fd

Browse files
committed
Update build scripts
1 parent db6cccc commit b02a2fd

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ git:
1818
# - julia: nightly
1919

2020
# uncomment the following lines to override the default test script
21-
script:
22-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
23-
- julia -e 'if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("Compat") ; Pkg.clone(pwd()) ; else ; Pkg.up() ; end ; Pkg.test("Format"; coverage=true)'
21+
#script:
22+
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
23+
# - julia -e 'if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("Compat") ; Pkg.clone(pwd()) ; else ; Pkg.up() ; end ; Pkg.test("Format"; coverage=true)'
2424
after_success:
2525
# push coverage results to Coveralls
2626
- julia -e 'cd(Pkg.dir("Format")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

appveyor.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,8 @@ build_script:
4040
- IF EXIST .git\shallow (git fetch --unshallow)
4141
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using InteractiveUtils);
4242
versioninfo();
43-
if VERSION < v\"0.7.0-DEV.5183\";
44-
Pkg.add(\"Compat\");
45-
Pkg.clone(pwd(), \"Format\");
46-
else; Pkg.up(); end"
43+
if VERSION < v\"0.7.0-DEV.5183\"; Pkg.add(\"Compat\"); Pkg.clone(pwd(), \"Format\");
44+
else; using Pkg; Pkg.add(pwd()); Pkg.up(); end"
4745

4846
test_script:
4947
- C:\projects\julia\bin\julia -e "Pkg.test(\"Format\")"

0 commit comments

Comments
 (0)