fix(deps): update errorproneversion to v2.47.0 (#8051) #1484
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Benchmark Main | |
| on: | |
| push: | |
| branches: [ main ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| sdk-benchmark: | |
| permissions: | |
| contents: write # for git push to benchmarks branch | |
| name: Benchmark SDK | |
| runs-on: oracle-bare-metal-64cpu-512gb-x86-64 | |
| container: | |
| image: ubuntu:24.04@sha256:cd1dba651b3080c3686ecf4e3c4220f026b521fb76978881737d24f200828b2b | |
| timeout-minutes: 20 # since there is only a single bare metal runner across all repos | |
| steps: | |
| - name: Install Git | |
| run: | | |
| apt-get update | |
| apt-get install -y git | |
| - name: Configure Git safe directory | |
| run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - id: setup-java | |
| name: Set up Java for build | |
| uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - name: Set up gradle | |
| uses: gradle/actions/setup-gradle@f29f5a9d7b09a7c6b29859002d29d24e1674c884 # v5.0.1 | |
| - name: Run jmh | |
| run: ./gradlew jmhJar | |
| env: | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} | |
| # TODO (jack-berg): Select or build appropriate benchmarks for other key areas: | |
| # - Log SDK record & export | |
| # - Trace SDK record & export | |
| # - Metric SDK export | |
| # - Noop implementation | |
| - name: Run Benchmark | |
| run: | | |
| cd sdk/all/build | |
| java -jar libs/opentelemetry-sdk-*-jmh.jar -rf json MetricRecordBenchmark | |
| - name: Use CLA approved github bot | |
| run: .github/scripts/use-cla-approved-bot.sh | |
| - name: Store benchmark results | |
| uses: benchmark-action/github-action-benchmark@4bdcce38c94cec68da58d012ac24b7b1155efe8b # v1.20.7 | |
| with: | |
| tool: 'jmh' | |
| output-file-path: sdk/all/build/jmh-result.json | |
| gh-pages-branch: benchmarks | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| benchmark-data-dir-path: "benchmarks" | |
| auto-push: true |