Skip to content

Commit

Permalink
update structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Barth committed May 28, 2019
1 parent fe62740 commit 25f6eea
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ os:
- linux
- osx
julia:
- 0.7
- 1.0
- 1.1
- nightly
matrix:
allow_failures:
Expand All @@ -21,6 +21,14 @@ after_success:
- julia -e 'using Pkg; cd(Pkg.dir("DataAssim")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'using Pkg; cd(Pkg.dir("DataAssim")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
# push documentation to the github pages
- julia -e 'using Pkg; Pkg.add("Documenter")'
- julia -e 'using Pkg; cd(Pkg.dir("DataAssim")); include(joinpath("docs", "make.jl"))'

jobs:
include:
- stage: "Documentation"
julia: 1.0
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
Pkg.develop(PackageSpec(path=pwd()))'
- julia --project=docs/ docs/make.jl
after_success: skip
19 changes: 19 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name = "DataAssim"
uuid = "cf87cc76-4620-5dad-9f0a-7411b2d39d18"
keywords = ["data assimilation", "Kalman Filter", "4D-Var"]
license = "LGPL"
desc = "Implementation of various ensemble Kalman Filter data assimilation methods in Julia"
version = "0.3.1"

[deps]
DIVAnd = "efc8151c-67de-5a8f-9a35-d8f54746ae9d"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
julia = "≥ 0.7.0"
3 changes: 3 additions & 0 deletions docs/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[deps]
DataAssim = "cf87cc76-4620-5dad-9f0a-7411b2d39d18"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

2 comments on commit 25f6eea

@Alexander-Barth
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/1053

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.1 -m "<description of version>" 25f6eeae237983be4c04ffdd3587358559fa020a
git push origin v0.3.1

Please sign in to comment.