Skip to content

Commit

Permalink
Merge branch 'VariousUpdates'
Browse files Browse the repository at this point in the history
  • Loading branch information
navidcy committed Jan 3, 2020
2 parents 8fb5f37 + 5ff0aac commit ebd786d
Show file tree
Hide file tree
Showing 9 changed files with 73 additions and 282 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -8,6 +8,7 @@
**/*.pdf
**/.nfs*
**/*.cov
**/Manifest.toml

docs/build/
docs/site/
Expand Down
51 changes: 51 additions & 0 deletions .gitlab-ci.yml
@@ -0,0 +1,51 @@
variables:
CI_IMAGE_TAG: 'cuda'
JULIA_NUM_THREADS: '4'
JULIA_CUDA_VERBOSE: 'true'

# See: https://github.com/JuliaGPU/gitlab-ci
include:
- 'https://raw.githubusercontent.com/JuliaGPU/gitlab-ci/master/templates/v6.yml'

image: nvidia/cuda:10.1-cudnn7-devel

julia:1.0:
extends:
- .julia:1.0
- .test
tags:
- nvidia

julia:1.1:
extends:
- .julia:1.1
- .test
tags:
- nvidia

# the "primary" target, where we require a new GPU to make sure all tests are run
julia:1.2:
image: juliagpu/cuda:10.1-cudnn7-cutensor1-devel-ubuntu18.04
extends:
- .julia:1.2
- .test
tags:
- nvidia
- sm_75
variables:
CI_THOROUGH: 'true'

julia:1.3:
extends:
- .julia:1.3
- .test
tags:
- nvidia
allow_failure: true


# other tasks
coverage:
extends:
- .julia:1.2
- .coverage
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -5,7 +5,7 @@ os:
- linux

julia:
- 1.0
- 1.3
- nightly

matrix:
Expand All @@ -19,7 +19,7 @@ after_success:
jobs:
include:
- stage: "Documentation"
julia: 1.0
julia: 1.3
os: linux
script:
- julia --project=docs/ -e 'using Pkg; Pkg.instantiate();
Expand Down
254 changes: 0 additions & 254 deletions Manifest.toml

This file was deleted.

7 changes: 0 additions & 7 deletions REQUIRE

This file was deleted.

3 changes: 2 additions & 1 deletion appveyor.yml
@@ -1,6 +1,7 @@
environment:
matrix:
- julia_version: 1
- julia_version: 1.2
- julia_version: 1.3
- julia_version: nightly

platform:
Expand Down
3 changes: 0 additions & 3 deletions docs/Project.toml
@@ -1,5 +1,2 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

[compat]
Documenter = "~0.20"
30 changes: 16 additions & 14 deletions docs/make.jl
Expand Up @@ -3,25 +3,27 @@ if Base.HOME_PROJECT[] !== nothing
Base.HOME_PROJECT[] = abspath(Base.HOME_PROJECT[])
end

using Documenter, PassiveTracerFlows
using
Documenter,
PassiveTracerFlows

makedocs(
modules = [PassiveTracerFlows],
doctest = false,
clean = true,
checkdocs = :all,
format = :html,
authors = "Gregory L. Wagner and Navid C. Constantinou",
sitename = "PassiveTracerFlows.jl",
pages = Any[
"Home" => "index.md",
"Modules" => Any[
"modules/traceradvdiff.md",
],
"DocStrings" => Any[
"man/types.md",
"man/functions.md"]
]
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
authors = "Gregory L. Wagner and Navid C. Constantinou",
sitename = "FourierFlows.jl",
pages = Any[
"Home" => "index.md",
"Modules" => Any[
"modules/traceradvdiff.md",
],
"DocStrings" => Any[
"man/types.md",
"man/functions.md"]
]
)

deploydocs( repo = "github.com/FourierFlows/PassiveTracerFlows.jl.git" )
deploydocs(repo = "github.com/FourierFlows/PassiveTracerFlows.jl.git")

0 comments on commit ebd786d

Please sign in to comment.