Skip to content

Commit

Permalink
Merge #190
Browse files Browse the repository at this point in the history
190: Update to julia 1.9 r=trontrytel a=trontrytel



Co-authored-by: Anna Jaruga <ajaruga@caltech.edu>
  • Loading branch information
bors[bot] and trontrytel authored Aug 25, 2023
2 parents 0519c40 + 70d60ed commit 572b450
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
env:
JULIA_VERSION: "1.8.1"
JULIA_VERSION: "1.9.2"
OPENMPI_VERSION: "4.0.4"
OPENBLAS_NUM_THREADS: 1

Expand All @@ -22,7 +22,7 @@ steps:
- "julia --project -e 'using Pkg; Pkg.precompile()'"

# force the initialization of the CUDA runtime as it is lazily loaded by default
- "julia --project -e 'using Pkg; Pkg.add(name=\"CUDA\",version=\"3.12.0\")'"
- "julia --project -e 'using Pkg; Pkg.add(name=\"CUDA\")'"
- "julia --project -e 'using CUDA; CUDA.versioninfo()'"
- "julia --project -e 'using CUDA; CUDA.precompile_runtime()'"
- "julia --project -e 'using Pkg; Pkg.status()'"
Expand Down
3 changes: 1 addition & 2 deletions .dev/up_deps.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ root = dirname(@__DIR__)
dirs = (
root,
joinpath(root, "test"),
joinpath(root, "perf"),
joinpath(root, "docs"),
joinpath(root, "integration_tests"),
joinpath(root, "parcel"),
)

cd(root) do
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CodeCov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Julia
uses: julia-actions/setup-julia@latest
with:
version: 1.8
version: 1.9

- name: Test with coverage
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/JuliaFormatter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- uses: julia-actions/setup-julia@latest
if: steps.filter.outputs.julia_file_change == 'true'
with:
version: 1.8
version: 1.9

- name: Apply JuliaFormatter
if: steps.filter.outputs.julia_file_change == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
version:
- '1.8.1'
- '1.9.2'
os:
- ubuntu-latest
- macOS-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: 1.8
version: 1.9
- name: Install dependencies
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- name: Build and deploy
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ KernelAbstractions = "0.8, 0.9"
NonlinearSolve = "1.8"
SpecialFunctions = "1, 2"
Thermodynamics = "0.9, 0.10"
julia = "1.5"
julia = "1.9"
2 changes: 1 addition & 1 deletion test/performance_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function benchmark_test(FT)
bench_press(
HN.organic_nucleation_rate,
(0.0, 1e3, 1e3, 1e3, 300, 1, nucleation_params),
450,
550,
)
bench_press(
HN.organic_and_h2so4_nucleation_rate,
Expand Down

0 comments on commit 572b450

Please sign in to comment.