Skip to content

Commit 5234d88

Browse files
committedMar 8, 2018
getting ready for transfer
1 parent fe38ee4 commit 5234d88

File tree

6 files changed

+21
-18
lines changed

6 files changed

+21
-18
lines changed
 

‎.travis.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@ os:
44
- linux
55
- osx
66
julia:
7-
- release
7+
- 0.6
88
- nightly
9+
matrix:
10+
allow_failures:
11+
- julia: nightly
912
notifications:
1013
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("JuLiASSO"); Pkg.test("JuLiASSO"; coverage=true)'
14+
after_success:
15+
- julia -e 'cd(Pkg.dir("StructuredOptimization")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(process_folder())'
16+
- julia -e 'cd(Pkg.dir("StructuredOptimization")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
17+
# - julia -e 'Pkg.add("Documenter")'
18+
# - julia -e 'cd(Pkg.dir("StructuredOptimization")); include(joinpath("docs", "make.jl"))'

‎LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The StructuredOptimization.jl package is licensed under the MIT "Expat" License:
22

3-
> Copyright (c) 2016: Lorenzo Stella, Niccolò Antonello.
3+
> Copyright (c) 2018: Lorenzo Stella, Niccolò Antonello.
44
>
55
> Permission is hereby granted, free of charge, to any person obtaining
66
> a copy of this software and associated documentation files (the

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ It supports complex variables as well.
2020

2121
## Installation
2222

23-
From the Julia command line hit `Pkg.clone("https://github.com/nantonel/StructuredOptimization.jl.git")`.
23+
From the Julia command line hit `Pkg.clone("https://github.com/kul-forbes/StructuredOptimization.jl.git")`.
2424
Once the package is installed you can update it along with the others issuing `Pkg.update()` in the command line.
2525

2626
## Usage

‎REQUIRE

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
julia 0.6
2-
AbstractOperators 0.0.4
3-
ProximalOperators 0.4.1
4-
ProximalAlgorithms 0.0.1+
2+
AbstractOperators 0.0.5
3+
ProximalOperators 0.6.0
4+
ProximalAlgorithms 0.0.3

‎appveyor.yml

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
environment:
22
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"
3+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
4+
# - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
75

86
branches:
97
only:
@@ -17,9 +15,10 @@ notifications:
1715
on_build_status_changed: false
1816

1917
install:
18+
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
2019
# Download most recent Julia Windows binary
2120
- ps: (new-object net.webclient).DownloadFile(
22-
$("http://s3.amazonaws.com/"+$env:JULIAVERSION),
21+
$env:JULIA_URL,
2322
"C:\projects\julia-binary.exe")
2423
# Run installer silently, output to C:\projects\julia
2524
- C:\projects\julia-binary.exe /S /D=C:\projects\julia
@@ -28,7 +27,7 @@ build_script:
2827
# Need to convert from shallow to complete for Pkg.clone to work
2928
- IF EXIST .git\shallow (git fetch --unshallow)
3029
- C:\projects\julia\bin\julia -e "versioninfo();
31-
Pkg.clone(pwd(), \"RegLS\"); Pkg.build(\"RegLS\")"
30+
Pkg.clone(pwd(), \"StructuredOptimization\"); Pkg.build(\"StructuredOptimization\")"
3231

3332
test_script:
34-
- C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"RegLS\")"
33+
- C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"StructuredOptimization\")"

‎docs/src/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ three different packages:
1818

1919
## Installation
2020

21-
From the Julia command line hit `Pkg.clone("https://github.com/nantonel/StructuredOptimization.jl.git")`.
21+
From the Julia command line hit `Pkg.clone("https://github.com/kul-forbes/StructuredOptimization.jl.git")`.
2222
Once the package is installed you can update it along with the others issuing
2323
`Pkg.update()` in the command line.
2424

0 commit comments

Comments
 (0)
Please sign in to comment.