Skip to content

Commit 8dd0535

Browse files
author
Jeff Whitaker
committed
remove aarch64 for now
1 parent 126efaf commit 8dd0535

File tree

2 files changed

+20
-18
lines changed

2 files changed

+20
-18
lines changed

.github/workflows/build-wheels-linux.yml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,22 @@ jobs:
3030
#python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
3131
#os: [ubuntu-latest]
3232
#platform: [x64, x32]
33-
include:
34-
- python-version: "3.7"
35-
os: ubuntu-latest
36-
platform: aarch64
37-
- python-version: "3.8"
38-
os: ubuntu-latest
39-
platform: aarch64
40-
- python-version: "3.9"
41-
os: ubuntu-latest
42-
platform: aarch64
43-
- python-version: "3.10"
44-
os: ubuntu-latest
45-
platform: aarch64
46-
- python-version: "3.11"
47-
os: ubuntu-latest
48-
platform: aarch64
33+
#include:
34+
# - python-version: "3.7"
35+
# os: ubuntu-latest
36+
# platform: aarch64
37+
# - python-version: "3.8"
38+
# os: ubuntu-latest
39+
# platform: aarch64
40+
# - python-version: "3.9"
41+
# os: ubuntu-latest
42+
# platform: aarch64
43+
# - python-version: "3.10"
44+
# os: ubuntu-latest
45+
# platform: aarch64
46+
# - python-version: "3.11"
47+
# os: ubuntu-latest
48+
# platform: aarch64
4949

5050
env:
5151
REPO_DIR: netcdf4-python

config.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ function build_netcdf {
156156
# && make install \
157157
# && ls -l $HDF5_PLUGIN_PATH )
158158
fi
159+
# test curl ssl support
160+
URL='https://icdc.cen.uni-hamburg.de/thredds/dodsC/ftpthredds/hamtide/m2.hamtide11a.nc'
161+
export CURLOPT_VERBOSE=1
162+
${BUILD_PREFIX}/bin/ncdump -h $URL
159163
touch netcdf-stamp
160164
}
161165

@@ -287,14 +291,12 @@ function run_tests {
287291
echo $PATH
288292
ls -l /usr/local/lib
289293
which python
290-
which ncdump
291294
cp ../netcdf4-python/test/* .
292295
python run_all.py
293296
# add test for netcdf4-python issue #1246 (opendap with ssl)
294297
#if [ -n "$IS_MACOS" ]; then # for now only run on MacOS since linux fails
295298
URL='https://icdc.cen.uni-hamburg.de/thredds/dodsC/ftpthredds/hamtide/m2.hamtide11a.nc'
296299
export CURLOPT_VERBOSE=1
297300
python -c "from netCDF4 import Dataset; nc=Dataset(\"${URL}\"); print(nc)"
298-
${BUILD_PREFIX}/bin/ncdump -h $URL
299301
#fi
300302
}

0 commit comments

Comments
 (0)