Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/mpi ci #427

Merged
merged 12 commits into from
Mar 23, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix path
  • Loading branch information
kgerheiser committed Mar 22, 2021
commit b39965b4933dc3294f717c54e9f169c129068199
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ jobs:
fi
- name: install-dependencies
run: |
echo "/home/runner/mpich/bin" >> $GITHUB_PATH
if [[ ${{ matrix.os }} == "ubuntu-20.04" ]]; then
sudo apt-get update
sudo apt-get install libmpich-dev
Expand All @@ -44,6 +43,7 @@ jobs:
sudo apt-get install libpng-dev
sudo apt-get install libjpeg-dev
elif [[ ${{ matrix.os }} == "macos-10.15" ]]; then
echo "$HOME/mpich/bin" >> $GITHUB_PATH
brew install doxygen
brew install mpich
brew install netcdf
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
make -j2
make test
export PATH="/home/runner/.local/bin:$PATH"
gcovr -r .. --html -o test-coverage.html
gcovr -r .. --html-details -o test-coverage.html
- uses: actions/upload-artifact@v2
if: ${{ matrix.os == 'ubuntu-20.04' }}
with:
Expand Down