Skip to content

Commit

Permalink
fixing docs, cleanup of test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardhartnett committed Aug 26, 2020
1 parent e715d07 commit 181373a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 18 deletions.
24 changes: 11 additions & 13 deletions .github/workflows/a3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,17 @@ jobs:
make
sudo make install
popd
- name: autotools build
run: |
set -x
echo 'export PATH=/home/runner/openmpi/bin:$PATH' > .bashrc
source .bashrc
export PATH="/home/runner/openmpi/bin:$PATH"
export CC=/home/runner/openmpi/bin/mpicc
autoreconf -i
./configure --with-mpiexec='mpiexec --oversubscribe'
which mpiexec
make check
- name: cmake build
run: |
set -x
Expand All @@ -130,19 +141,6 @@ jobs:
make VERBOSE=1
make tests VERBOSE=1
ctest -VV
- name: autotools build
run: |
set -x
echo 'export PATH=/home/runner/openmpi/bin:$PATH' > .bashrc
echo $'alias mpiexec=\'mpiexec --oversubscribe\'' >> .bashrc
cat .bashrc
source .bashrc
export PATH="/home/runner/openmpi/bin:$PATH"
export CC=/home/runner/openmpi/bin/mpicc
autoreconf -i
./configure --with-mpiexec='mpiexec --oversubscribe'
which mpiexec
make check
10 changes: 5 additions & 5 deletions src/flib/pionfget_mod.F90.in
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ CONTAINS
!>
!! @public
!! @ingroup PIO_get_var
!! @brief Writes an netcdf attribute to a file
!! @brief Writes data to a file
!! @details
!! @param File @ref file_desc_t
!! @param vardesc @ref var_desc_t
Expand All @@ -228,7 +228,7 @@ CONTAINS
!>
!! @public
!! @ingroup PIO_get_var
!! @brief Writes an netcdf attribute to a file
!! @brief Gets data from a file
!! @details
!! @param File @ref file_desc_t
!! @param varid : The netcdf variable identifier
Expand Down Expand Up @@ -276,7 +276,7 @@ CONTAINS
!>
!! @public
!! @ingroup PIO_get_var
!! @brief Writes an netcdf attribute to a file
!! @brief Gets data from a file
!! @details
!! @param File @ref file_desc_t
!! @param vardesc @ref var_desc_t
Expand Down Expand Up @@ -316,7 +316,7 @@ CONTAINS
!>
!! @public
!! @ingroup PIO_get_var
!! @brief Writes an netcdf attribute to a file
!! @brief Gets data from a file
!! @details
!! @param File @ref file_desc_t
!! @param varid : The netcdf variable identifier
Expand Down Expand Up @@ -449,7 +449,7 @@ CONTAINS
!>
!! @public
!! @ingroup PIO_get_var
!! @brief Writes an netcdf attribute to a file
!! @brief Gets data from a file
!! @details
!! @param File @ref file_desc_t
!! @param vardesc @ref var_desc_t
Expand Down

0 comments on commit 181373a

Please sign in to comment.