Skip to content

Commit 718eeb4

Browse files
committed
fix CI (add MPI)
1 parent c5ecb98 commit 718eeb4

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ jobs:
1717
python-version: 3.8
1818
- name: Check Version
1919
run: test ${{ github.event.release.tag_name }} = `python -c "import scorep._version; print('v'+scorep._version.__version__)"`
20-
20+
21+
- name: Install MPI
22+
run: sudo apt-get -y install openmpi-common openmpi-bin libopenmpi-dev
23+
2124
- name: Add Score-P repo
2225
run: sudo add-apt-repository ppa:andreasgocht/scorep
2326

2427
- name: Install Score-P
25-
run: sudo apt install scorep
28+
run: sudo apt-get -y install scorep
2629

2730
- name: Setup environment
2831
run: echo "$HOME/scorep/bin" >> $GITHUB_PATH

.github/workflows/unit_tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,14 @@ jobs:
1919
path: ~/.cache/pip
2020
key: ${{ runner.os }}-pip
2121

22+
- name: Install MPI
23+
run: sudo apt-get -y install openmpi-common openmpi-bin libopenmpi-dev
24+
2225
- name: Add Score-P repo
2326
run: sudo add-apt-repository ppa:andreasgocht/scorep
2427

2528
- name: Install Score-P
26-
run: sudo apt install scorep
29+
run: sudo apt-get -y install scorep
2730

2831
- name: Setup environment
2932
run: echo "$HOME/scorep/bin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)