Skip to content

Commit 75aa236

Browse files
author
Jeff Whitaker
committed
update
1 parent 8e943ac commit 75aa236

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/build_latest.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
NETCDF_DIR: ${{ github.workspace }}/..
1111
NETCDF_EXTRA_CONFIG: --enable-pnetcdf
1212
#CC: mpicc.mpich
13-
CC: mpicc.openmpi
13+
CC: mpicc
1414
#NO_NET: 1
1515
strategy:
1616
matrix:
@@ -29,7 +29,8 @@ jobs:
2929
- name: Install Ubuntu Dependencies
3030
run: |
3131
sudo apt-get update
32-
sudo apt-get install mpich libmpich-dev libhdf5-mpich-dev openmpi-bin openmpi-common libopenmpi-dev libhdf5-openmpi-dev ibcurl4-openssl-dev bzip2 libsnappy-dev libblosc-dev libzstd-dev
32+
#sudo apt-get install mpich libmpich-dev libhdf5-mpich-dev openmpi-bin openmpi-common libopenmpi-dev libhdf5-openmpi-dev libcurl4-openssl-dev bzip2 libsnappy-dev libblosc-dev libzstd-dev
33+
sudo apt-get install openmpi-common libopenmpi-dev openmpi-bin libhdf5-openmpi-dev libcurl4-openssl-dev bzip2 libsnappy-dev libblosc-dev libzstd-dev
3334
update-alternatives --get-selections | grep mpi
3435
update-alternatives --query mpi
3536
update-alternatives --list mpirun
@@ -82,23 +83,23 @@ jobs:
8283
# parallel (hdf5 for netcdf4, pnetcdf for netcdf3)
8384
cd ../examples
8485
#mpirun.mpich -np 4 python mpi_example.py
85-
mpirun.openmpi -np 4 --oversubscribe python mpi_example.py
86+
mpirun -np 4 --oversubscribe python mpi_example.py
8687
if [ $? -ne 0 ] ; then
8788
echo "hdf5 mpi test failed!"
8889
exit 1
8990
else
9091
echo "hdf5 mpi test passed!"
9192
fi
9293
#mpirun.mpich -np 4 python mpi_example_compressed.py
93-
mpirun.openmpi -np 4 --oversubscribe python mpi_example_compressed.py
94+
mpirun -np 4 --oversubscribe python mpi_example_compressed.py
9495
if [ $? -ne 0 ] ; then
9596
echo "hdf5 compressed mpi test failed!"
9697
exit 1
9798
else
9899
echo "hdf5 compressed mpi test passed!"
99100
fi
100101
#mpirun.mpich -np 4 python mpi_example.py NETCDF3_64BIT_DATA
101-
mpirun.openmpi -np 4 --oversubscribe python mpi_example.py NETCDF3_64BIT_DATA
102+
mpirun -np 4 --oversubscribe python mpi_example.py NETCDF3_64BIT_DATA
102103
if [ $? -ne 0 ] ; then
103104
echo "pnetcdf mpi test failed!"
104105
exit 1

0 commit comments

Comments
 (0)