Skip to content

Commit e17b7d5

Browse files
committed
update CI
1 parent a5dabec commit e17b7d5

2 files changed

Lines changed: 9 additions & 12 deletions

File tree

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,21 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@master
12-
- id: cache
13-
uses: actions/cache@v1
14-
with:
15-
path: ~/scorep
16-
key: scorep
12+
1713

1814
- name: Set up Python 3.7
1915
uses: actions/setup-python@v1
2016
with:
2117
python-version: 3.7
2218
- name: Check Version
2319
run: test ${{ github.event.release.tag_name }} = `python -c "import scorep._version; print('v'+scorep._version.__version__)"`
24-
- name: Install dependencies
20+
21+
- name: Add Score-P repo
2522
run: sudo add-apt-repository ppa:andreasgocht/scorep
23+
24+
- name: Install Score-P
2625
run: sudo apt install scorep
26+
2727
- name: Setup environment
2828
run: echo "$HOME/scorep/bin" >> $GITHUB_PATH
2929

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,11 @@ jobs:
1818
with:
1919
path: ~/.cache/pip
2020
key: ${{ runner.os }}-pip
21-
- id: cache
22-
uses: actions/cache@v1
23-
with:
24-
path: ~/scorep
25-
key: scorep
2621

27-
- name: Install dependencies
22+
- name: Add Score-P repo
2823
run: sudo add-apt-repository ppa:andreasgocht/scorep
24+
25+
- name: Install Score-P
2926
run: sudo apt install scorep
3027

3128
- name: Setup environment

0 commit comments

Comments
 (0)