Skip to content

Commit

Permalink
enable verbose mode to show install warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
wkliao committed Aug 9, 2024
1 parent c6cf9c0 commit 975cdda
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pnetcdf_c_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Install PnetCDF-Python
run: |
export CC=$MPICH_DIR/bin/mpicc
pip install --no-build-isolation -e .
pip install --verbose --no-build-isolation -e .
- name: Test PnetCDF-Python
run: |
Expand All @@ -101,7 +101,7 @@ jobs:
make install-clean
export CC=$MPICH_DIR/bin/mpicc
python setup.py sdist
pip install dist/pnetcdf-*.tar.gz
pip install --verbose dist/pnetcdf-*.tar.gz
- name: Test PnetCDF-Python
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pnetcdf_c_official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Install PnetCDF-Python
run: |
export CC=$MPICH_DIR/bin/mpicc
pip install --no-build-isolation -e .
pip install --verbose --no-build-isolation -e .
- name: Test PnetCDF-Python
run: |
Expand All @@ -99,7 +99,7 @@ jobs:
make install-clean
export CC=$MPICH_DIR/bin/mpicc
python setup.py sdist
pip install dist/pnetcdf-*.tar.gz
pip install --verbose dist/pnetcdf-*.tar.gz
- name: Test PnetCDF-Python
run: |
Expand Down

0 comments on commit 975cdda

Please sign in to comment.