@@ -135,45 +135,10 @@ jobs:
135
135
run : |
136
136
aws s3 cp target/doc "s3://${S3_BUCKET_NAME}/docs/${{ inputs.head_revision }}" --recursive
137
137
138
- compiletime-benchmark :
139
- runs-on : ubuntu-latest
140
- name : Run Compiletime Benchmark
141
- permissions :
142
- id-token : write
143
- contents : read
144
- pull-requests : write
145
- outputs :
146
- compiletime-benchmark : ${{ steps.compiletime-benchmark.outputs.compiletime-benchmark }}
147
- steps :
148
- - uses : actions/checkout@v3
149
- - uses : actions/cache@v3
150
- name : Gradle Cache
151
- with :
152
- path : |
153
- ~/.gradle/caches
154
- ~/.gradle/wrapper
155
- key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
156
- restore-keys : |
157
- ${{ runner.os }}-gradle-
158
- # JDK is needed to generate code
159
- - name : Set up JDK
160
- uses : actions/setup-java@v3
161
- with :
162
- distribution : corretto
163
- java-package : jdk
164
- java-version : ${{ env.java_version }}
165
- - uses : dtolnay/rust-toolchain@master
166
- with :
167
- toolchain : ${{ env.rust_version }}
168
- - name : run benchmark
169
- id : run-compiletime-benchmark
170
- run : bash tools/ci-scripts/compiletime-benchmark && cat /tmp/compiletime-benchmark.md >> "$GITHUB_OUTPUT"
171
-
172
138
post-bot-comment :
173
139
needs :
174
140
- generate-diff
175
141
- generate-doc-preview
176
- - compiletime-benchmark
177
142
runs-on : ubuntu-latest
178
143
name : Post bot comment
179
144
permissions :
@@ -199,8 +164,6 @@ jobs:
199
164
issue_number: ${{ inputs.issue_number }},
200
165
owner: context.repo.owner,
201
166
repo: context.repo.repo,
202
- body: '${{ steps.compiletime-benchmark.outputs.compiletime-benchmark }}\n\n' +
203
- '${{ steps.bot-messages.outputs.codegen-diff }}\n\n' +
167
+ body: '${{ steps.bot-messages.outputs.codegen-diff }}\n\n' +
204
168
'${{ needs.generate-doc-preview.outputs.bot-message }}\n\n'
205
-
206
169
})
0 commit comments