Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b6200b8
Updates for Oceananigans 0.90.7
glwagner Feb 13, 2024
d8e34c0
Update Oceananigans compat
glwagner Feb 28, 2024
be8b560
Merge branch 'glw/update' of https://github.com/CliMA/ParameterEstimo…
glwagner Feb 28, 2024
94bda76
Bump version
glwagner Feb 28, 2024
639967f
Update manifest
glwagner Feb 28, 2024
23355d7
Update CI to 1.10
glwagner Feb 28, 2024
c653ed0
Remove veriosn from ci?
glwagner Feb 28, 2024
b482d3a
Use quotes around 1.10
glwagner Feb 28, 2024
9fef51e
Update for new Oceananigans
glwagner Mar 12, 2024
db54028
Change arch_array to on_architecture
glwagner Mar 16, 2024
0846fbb
Fuss with eki_objective
glwagner Mar 17, 2024
cf47cd5
Update Oceananigans
glwagner Mar 21, 2024
e2f8880
Tiny bit of clean up plus asyncmap for batched inverse problem
glwagner Mar 23, 2024
b82a4f9
Dont use asyncmap
glwagner Apr 6, 2024
fdca8eb
Update project
glwagner May 7, 2024
471e10d
Merge branch 'glw/update' of https://github.com/CliMA/ParameterEstimo…
glwagner May 7, 2024
fa4fdf3
use asyncmap on CPU but not on GPU
glwagner May 7, 2024
8112cc4
Pretty up some stuff
glwagner May 8, 2024
3a6f813
Add capability to for tracer forcing arrays in ensemle simulations
glwagner Jun 3, 2024
d4a6768
Update Oceanangians compat
glwagner Oct 9, 2024
48e7c65
Comment out lesbrary tests
glwagner Oct 9, 2024
ab33ff8
Update ci
glwagner Oct 18, 2024
241a2e9
arm64 for mac
glwagner Oct 18, 2024
b610667
Update Project.toml
glwagner Oct 31, 2024
1c9d728
Updates for latest Oceananigans
glwagner Nov 7, 2024
5dacd23
Update Project
glwagner Dec 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@latest
with:
version: 1.8
version: '1.10'
show-versioninfo: true
- name: Install dependencies
run: |
Expand Down
17 changes: 8 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
name: CI

env:
DATADEPS_ALWAYS_ACCEPT: true

on:
push:
branches: [main]
Expand All @@ -12,27 +16,22 @@ jobs:
fail-fast: false
matrix:
version:
- '1.8'
- '1.10'
# We don't want to test on Julia versions more recent than 1.6 until we
# figure out a robust solution for serializing / deserializing Oceananigans Grids.
# - '1' # automatically expands to the latest stable 1.x release of Julia
# - nightly
os:
- ubuntu-latest
- windows-latest
arch:
- x64
- x86
include:
# test macOS and Windows with latest Julia only
- os: macOS-latest
arch: x64
version: 1.8
- os: windows-latest
arch: x64
version: 1.8
- os: windows-latest
arch: x86
version: 1.8
arch: arm64
version: '1.10'
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@latest
Expand Down
Loading