Merge branch 'master' into typing #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Stubtest | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
name: Python (${{ matrix.python-version }}) | |
runs-on: ubuntu-latest | |
env: | |
NETCDF_DIR: ${{ github.workspace }}/.. | |
CC: mpicc.mpich | |
#NO_NET: 1 | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Ubuntu Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install mpich libmpich-dev libhdf5-mpich-dev libcurl4-openssl-dev bzip2 libsnappy-dev libblosc-dev libzstd-dev | |
echo "Download and build netCDF github master" | |
git clone https://github.com/Unidata/netcdf-c | |
pushd netcdf-c | |
git submodule update --init --recursive | |
export CPPFLAGS="-I/usr/include/hdf5/mpich -I${NETCDF_DIR}/include" | |
export LDFLAGS="-L${NETCDF_DIR}/lib" | |
export LIBS="-lhdf5_mpich_hl -lhdf5_mpich -lm -lz" | |
autoreconf -i | |
./configure --prefix $NETCDF_DIR --enable-netcdf-4 --enable-shared --enable-dap --enable-parallel4 | |
make -j 2 | |
make install | |
popd | |
# - name: The job has failed | |
# if: ${{ failure() }} | |
# run: | | |
# cd netcdf-c-${NETCDF_VERSION} | |
# cat config.log | |
- name: Install python dependencies via pip | |
run: | | |
python -m pip install --upgrade pip | |
pip install numpy cython cftime pytest twine wheel check-manifest mpi4py mypy | |
- name: Install netcdf4-python | |
run: | | |
export PATH=${NETCDF_DIR}/bin:${PATH} | |
export NETCDF_PLUGIN_DIR=${{ github.workspace }}/netcdf-c/plugins/plugindir | |
python setup.py develop | |
- name: Stubtest | |
run: | | |
stubtest netCDF4 --allowlist .github/stubtest-allowlist --mypy-config-file=pyproject.toml |