File tree 2 files changed +37
-12
lines changed
2 files changed +37
-12
lines changed Original file line number Diff line number Diff line change @@ -88,18 +88,30 @@ jobs:
88
88
- name : Install PnetCDF-Python
89
89
run : |
90
90
export CC=$MPICH_DIR/bin/mpicc
91
- pip install --no-build-isolation -e .
91
+ pip install --verbose -- no-build-isolation -e .
92
92
93
93
- name : Test PnetCDF-Python
94
94
run : |
95
95
export PATH=${MPICH_DIR}/bin:${PATH}
96
96
make ptests
97
97
98
+ - name : Re-install PnetCDF-Python from source distribution
99
+ run : |
100
+ pip uninstall -y pnetcdf
101
+ make install-clean
102
+ export CC=$MPICH_DIR/bin/mpicc
103
+ python setup.py sdist
104
+ pip install --verbose dist/pnetcdf-*.tar.gz
105
+
106
+ - name : Test PnetCDF-Python
107
+ run : |
108
+ export PATH=${MPICH_DIR}/bin:${PATH}
109
+ make ptests
98
110
# - name: Tarball
99
111
# run: |
100
- # export PATH=${NETCDF_DIR}/bin:${PATH}
101
- # python setup.py --version
112
+ # export PATH=${NETCDF_DIR}/bin:${PATH}
113
+ # python setup.py --version
102
114
# check-manifest --version
103
- # check-manifest --verbose
104
- # pip wheel . -w dist --no-deps
105
- # twine check dist/*
115
+ # check-manifest --verbose
116
+ # pip wheel . -w dist --no-deps
117
+ # twine check dist/*
Original file line number Diff line number Diff line change 86
86
- name : Install PnetCDF-Python
87
87
run : |
88
88
export CC=$MPICH_DIR/bin/mpicc
89
- pip install --no-build-isolation -e .
89
+ pip install --verbose --no-build-isolation -e .
90
+
91
+ - name : Test PnetCDF-Python
92
+ run : |
93
+ export PATH=${MPICH_DIR}/bin:${PATH}
94
+ make ptests
95
+
96
+ - name : Re-install PnetCDF-Python from source distribution
97
+ run : |
98
+ pip uninstall -y pnetcdf
99
+ make install-clean
100
+ export CC=$MPICH_DIR/bin/mpicc
101
+ python setup.py sdist
102
+ pip install --verbose dist/pnetcdf-*.tar.gz
90
103
91
104
- name : Test PnetCDF-Python
92
105
run : |
95
108
96
109
# - name: Tarball
97
110
# run: |
98
- # export PATH=${NETCDF_DIR}/bin:${PATH}
99
- # python setup.py --version
111
+ # export PATH=${NETCDF_DIR}/bin:${PATH}
112
+ # python setup.py --version
100
113
# check-manifest --version
101
- # check-manifest --verbose
102
- # pip wheel . -w dist --no-deps
103
- # twine check dist/*
114
+ # check-manifest --verbose
115
+ # pip wheel . -w dist --no-deps
116
+ # twine check dist/*
You can’t perform that action at this time.
0 commit comments