Skip to content

Commit a1f9fa7

Browse files
authored
Merge pull request #433 from mimiframework/dependencies
Update dependency paths
2 parents c656f8b + 58794a2 commit a1f9fa7

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ script:
2121
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
2222
- if [[ `uname` = "Linux" ]]; then TESTCMD="xvfb-run julia"; else TESTCMD="julia"; fi
2323
- $TESTCMD --check-bounds=yes -e 'using Pkg; Pkg.clone(pwd()); Pkg.build("Mimi"); Pkg.test("Mimi"; coverage=true)'
24+
- julia -e 'using Pkg; Pkg.Registry.add(RegistrySpec(url = "https://github.com/mimiframework/MimiRegistry.git"))'
25+
- julia -e 'using Pkg; Pkg.add("MimiFUND")'
26+
- julia -e 'using Pkg; Pkg.add("MimiRICE2010")'
2427
- julia --check-bounds=yes -e 'include("test/test_dependencies.jl"); run_dependency_tests()'
2528
after_success:
2629
- julia -e 'using Pkg; cd(Pkg.dir("Mimi")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ pkg> add MimiRICE2010
5151
* [MimiFUND.jl](https://github.com/fund-model/MimiFUND.jl) (currently in beta)
5252
* [MimiDICE2010.jl](https://github.com/anthofflab/MimiDICE2010.jl) (currently in closed beta)
5353
* [MimiDICE2013.jl](https://github.com/anthofflab/MimiDICE2013.jl) (currently in closed beta)
54-
* [MimiRICE2010.jl](https://github.com/anthofflab/MimiRICE2010.jl))
54+
* [MimiRICE2010.jl](https://github.com/anthofflab/MimiRICE2010.jl)
5555
* [Mimi-SNEASY.jl](https://github.com/anthofflab/mimi-sneasy.jl) (currently in closed beta)
5656
* [Mimi-FAIR.jl](https://github.com/anthofflab/mimi-fair.jl) (currently in closed beta)
5757
* [MimiPAGE2009.jl](https://github.com/anthofflab/MimiPAGE2009.jl) (currently in closed beta)

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pkg> add MimiRICE2010
3636
* [MimiFUND.jl](https://github.com/fund-model/MimiFUND.jl) (currently in beta)
3737
* [MimiDICE2010.jl](https://github.com/anthofflab/MimiDICE2010.jl) (currently in closed beta)
3838
* [MimiDICE2013.jl](https://github.com/anthofflab/MimiDICE2013.jl) (currently in closed beta)
39-
* [MimiRICE2010.jl](https://github.com/anthofflab/MimiRICE2010.jl))
39+
* [MimiRICE2010.jl](https://github.com/anthofflab/MimiRICE2010.jl)
4040
* [Mimi-SNEASY.jl](https://github.com/anthofflab/mimi-sneasy.jl) (currently in closed beta)
4141
* [Mimi-FAIR.jl](https://github.com/anthofflab/mimi-fair.jl) (currently in closed beta)
4242
* [MimiPAGE2009.jl](https://github.com/anthofflab/MimiPAGE2009.jl) (currently in closed beta)

test/test_dependencies.jl

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@ end
1616

1717
#list of URLs of branches of packages to test
1818
dependencies = [
19-
"https://github.com/fund-model/fund/archive/1768edf12aaaac3a41bbea081d5b51299121f993.zip",
20-
"https://github.com/anthofflab/mimi-rice-2010.jl/archive/2b5996b0a0c8be92290991f045c43af425c5a9c8.zip"
19+
"https://github.com/fund-model/MimiFUND.jl/archive/4aa7146a735c547c9d4d0c63b9ecd64dbc4ed3e9.zip",
20+
"https://github.com/anthofflab/MimiRICE2010.jl/archive/dc359f9350b2cfde51574e29070b9b8b162de1ec.zip"
2121
]
22-
2322
function run_dependency_tests(dependencies=dependencies)
2423
#list of failed tests to build as you go
2524
errors = []

0 commit comments

Comments
 (0)