Skip to content

Commit 559271c

Browse files
committed
Update ci_pipeline.yml
1 parent 7b501c6 commit 559271c

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

.github/workflows/ci_pipeline.yml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -113,28 +113,28 @@ jobs:
113113
pip install genbadge[all]
114114
genbadge coverage -i coverage.xml -o htmlcov/coverage-badge.svg
115115
116-
- name: Generate benchmark report
117-
uses: pancetta/github-action-benchmark@v1
118-
if: ${{ (!contains(github.event.head_commit.message, '[CI-no-benchmarks]')) && (github.event_name == 'push') }}
119-
with:
120-
name: pySDC Benchmark with pytest-benchmark
121-
tool: 'pytest'
122-
output-file-path: benchmarks/output.json
123-
auto-push: false
124-
skip-fetch-gh-pages: true
125-
benchmark-data-dir-path: bench/${{ github.head_ref || github.ref_name }}
126-
github-token: ${{ secrets.GITHUB_TOKEN }}
127-
128-
- name: Push benchmark data
129-
uses: dmnemec/copy_file_to_another_repo_action@main
130-
if: "!contains(github.event.head_commit.message, '[CI-no-benchmarks]')"
131-
env:
132-
API_TOKEN_GITHUB: ${{ secrets.BENCHMARK_BOT }}
133-
with:
134-
source_file: 'bench/${{ github.head_ref || github.ref_name }}'
135-
destination_repo: 'Parallel-in-Time/pySDC-benchmarks'
136-
user_email: '[email protected]'
137-
user_name: 'pancetta'
116+
# - name: Generate benchmark report
117+
# uses: pancetta/github-action-benchmark@v1
118+
# if: ${{ (!contains(github.event.head_commit.message, '[CI-no-benchmarks]')) && (github.event_name == 'push') }}
119+
# with:
120+
# name: pySDC Benchmark with pytest-benchmark
121+
# tool: 'pytest'
122+
# output-file-path: benchmarks/output.json
123+
# auto-push: false
124+
# skip-fetch-gh-pages: true
125+
# benchmark-data-dir-path: bench/${{ github.head_ref || github.ref_name }}
126+
# github-token: ${{ secrets.GITHUB_TOKEN }}
127+
#
128+
# - name: Push benchmark data
129+
# uses: dmnemec/copy_file_to_another_repo_action@main
130+
# if: "!contains(github.event.head_commit.message, '[CI-no-benchmarks]')"
131+
# env:
132+
# API_TOKEN_GITHUB: ${{ secrets.BENCHMARK_BOT }}
133+
# with:
134+
# source_file: 'bench/${{ github.head_ref || github.ref_name }}'
135+
# destination_repo: 'Parallel-in-Time/pySDC-benchmarks'
136+
# user_email: '[email protected]'
137+
# user_name: 'pancetta'
138138

139139
- name: Build html I
140140
run: |
@@ -144,14 +144,14 @@ jobs:
144144
mkdir -p docs/build/html/coverage
145145
mv htmlcov/* docs/build/html/coverage/.
146146
147-
- name: Build html II
148-
if: "!contains(github.event.head_commit.message, '[CI-no-benchmarks]')"
149-
run: |
150-
mkdir -p docs/build/html/benchmarks
151-
cp -r bench/${{ github.head_ref || github.ref_name }}/* docs/build/html/benchmarks/.
147+
# - name: Build html II
148+
# if: "!contains(github.event.head_commit.message, '[CI-no-benchmarks]')"
149+
# run: |
150+
# mkdir -p docs/build/html/benchmarks
151+
# cp -r bench/${{ github.head_ref || github.ref_name }}/* docs/build/html/benchmarks/.
152152

153153
- name: Store docs
154-
uses: actions/upload-artifact@v2
154+
uses: actions/upload-artifact@v3
155155
with:
156156
name: docs
157157
path: docs/build/html

0 commit comments

Comments
 (0)