Skip to content

Commit

Permalink
Merge pull request #54 from CliMA/glw/JRA55
Browse files Browse the repository at this point in the history
Adds utilities for downloading and working with JRA55 data
  • Loading branch information
glwagner authored Nov 3, 2023
2 parents 84ff94e + 508b26e commit ef27621
Show file tree
Hide file tree
Showing 16 changed files with 687 additions and 591 deletions.
18 changes: 11 additions & 7 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,24 @@ steps:
- label: "initialize"
key: "init"
command:
- echo "--- Instantiate project"
- julia --project -e 'using Pkg; Pkg.instantiate(; verbose=true); Pkg.precompile(; strict=true)'
- "echo '--- Instantiate project'"
- "julia --project -e 'using Pkg; Pkg.instantiate(; verbose=true); Pkg.precompile(; strict=true)'"
# force the initialization of the CUDA runtime as it is lazily loaded by default
- julia --project -e 'using CUDA; CUDA.precompile_runtime()'
- "julia --project -e 'using CUDA; CUDA.precompile_runtime()'"

agents:
slurm_mem: 32G
slurm_cpus_per_task: 8
env:
JULIA_NUM_PRECOMPILE_TASKS: 8

- wait

- label: "Run tests"
- label: "Run all the tests"
key: "tests"
command:
- julia --project -e 'using Pkg; Pkg.test()'
env:
CUDA_VISIBLE_DEVICES: "-1"
TEST_GROUP: "jra55"
commands:
- "julia --project -e 'using Pkg; Pkg.test()'"

9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,15 @@ jobs:
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
- name: Install dependencies
run: |
julia --color=yes --project -e 'using Pkg; Pkg.instantiate()'
julia --color=yes --project -e 'using Pkg; Pkg.precompile()'
julia --color=yes --project -e 'using Pkg; Pkg.test()'
env:
TEST_GROUP: "downloading"
with:
file: lcov.info

Loading

0 comments on commit ef27621

Please sign in to comment.