File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed
experiments/ClimaEarth/components/ocean Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 1616
1717timeout_in_minutes : 240
1818
19+ secrets :
20+ - ECCO_USERNAME
21+ - ECCO_WEBDAV_PASSWORD
22+
1923steps :
2024 - label : " init environment :computer:"
2125 key : " init_cpu_env"
Original file line number Diff line number Diff line change 1717 test :
1818 name : ci ${{ matrix.version }} - ${{ matrix.os }}
1919 runs-on : ${{ matrix.os }}
20+ env :
21+ ECCO_USERNAME : ${{ secrets.ECCO_USERNAME }}
22+ ECCO_WEBDAV_PASSWORD : ${{ secrets.ECCO_WEBDAV_PASSWORD }}
2023 strategy :
2124 fail-fast : false
2225 matrix :
Original file line number Diff line number Diff line change @@ -229,7 +229,10 @@ function FieldExchanger.resolve_ocean_ice_fractions!(
229229 end
230230
231231 # Update the ice concentration field in the ocean simulation
232- ocean_sim. ice_concentration .= Interfacer. get_field (ice_sim, Val (:ice_concentration ))
232+ ice_sim isa ClimaSeaIceSimulation && (
233+ ocean_sim. ice_concentration .=
234+ Interfacer. get_field (ice_sim, Val (:ice_concentration ))
235+ )
233236 return nothing
234237end
235238
You can’t perform that action at this time.
0 commit comments