Skip to content

Commit e81706b

Browse files
committed
move to package for Score-P
1 parent 86d0134 commit e81706b

2 files changed

Lines changed: 4 additions & 22 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,9 @@ jobs:
2121
python-version: 3.7
2222
- name: Check Version
2323
run: test ${{ github.event.release.tag_name }} = `python -c "import scorep._version; print('v'+scorep._version.__version__)"`
24-
- name: Install system dependencies
25-
run: sudo apt install gcc-7-plugin-dev libopenmpi-dev openmpi-bin
2624
- name: Install dependencies
27-
if: steps.cache.outputs.cache-hit != 'true'
28-
run: |
29-
mkdir /tmp/buildScorep && cd /tmp/buildScorep
30-
wget https://www.vi-hps.org/cms/upload/packages/scorep/scorep-6.0.tar.gz
31-
tar xf scorep-6.0.tar.gz
32-
cd scorep-6.0
33-
mkdir build && cd build
34-
../configure --enable-shared --prefix=$HOME/scorep
35-
make -j3 && make install
25+
run: sudo add-apt-repository ppa:andreasgocht/scorep
26+
run: sudo apt install scorep
3627
- name: Setup environment
3728
run: echo "$HOME/scorep/bin" >> $GITHUB_PATH
3829

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,9 @@ jobs:
2424
path: ~/scorep
2525
key: scorep
2626

27-
- name: Install system dependencies
28-
run: sudo apt install gcc-7-plugin-dev libopenmpi-dev openmpi-bin
2927
- name: Install dependencies
30-
if: steps.cache.outputs.cache-hit != 'true'
31-
run: |
32-
mkdir /tmp/buildScorep && cd /tmp/buildScorep
33-
wget https://www.vi-hps.org/cms/upload/packages/scorep/scorep-6.0.tar.gz
34-
tar xf scorep-6.0.tar.gz
35-
cd scorep-6.0
36-
mkdir build && cd build
37-
../configure --enable-shared --prefix=$HOME/scorep
38-
make -j3 && make install
28+
run: sudo add-apt-repository ppa:andreasgocht/scorep
29+
run: sudo apt install scorep
3930

4031
- name: Setup environment
4132
run: echo "$HOME/scorep/bin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)