File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -143,6 +143,10 @@ jobs:
143
143
- name : Install Rust (${{matrix.rust}})
144
144
uses : dtolnay/rust-toolchain@stable
145
145
with : {toolchain: '${{matrix.rust}}'}
146
+ - name : Set target version for macos-13
147
+ run : |
148
+ echo "MACOSX_DEPLOYMENT_TARGET=13.7" >> $GITHUB_ENV
149
+ if : ${{ matrix.os == 'macos-13' }}
146
150
- name : Build and test
147
151
run : cargo test -vv --features netcdf/derive,static --workspace --exclude netcdf-derive
148
152
Original file line number Diff line number Diff line change @@ -33,7 +33,9 @@ fn main() {
33
33
//
34
34
. define ( "NETCDF_ENABLE_PARALLEL4" , "OFF" ) // TODO: Enable mpi support
35
35
//
36
- . define ( "NETCDF_ENABLE_NCZARR" , "OFF" ) // TODO: requires a bunch of deps
36
+ . define ( "NETCDF_ENABLE_NCZARR" , "ON" )
37
+ . define ( "NETCDF_ENABLE_NCZARR_ZIP" , "OFF" ) // TODO: requires forwarding flags for libz
38
+ . define ( "NETCDF_ENABLE_S3" , "OFF" ) // TODO: requires a bunch of deps
37
39
//
38
40
. define ( "NETCDF_ENABLE_DAP" , "OFF" ) // TODO: feature flag, requires curl
39
41
. define ( "NETCDF_ENABLE_BYTERANGE" , "OFF" ) // TODO: feature flag, requires curl
You can’t perform that action at this time.
0 commit comments