@@ -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- 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+ 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