Fixed some locations to not touch exceptions when safe_exception
is…
#212
This file contains 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: microbenchmark | |
on: | |
workflow_dispatch: | |
inputs: | |
stack_version: | |
description: "JVM, use values from: curl -s https://jvm-catalog.elastic.co/jdks/tags/linux,x86_64 | jq '.[] | .id'" | |
default: 'openjdk-17+35-linux' | |
required: false | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- '**.asciidoc' | |
# limit the access of the generated GITHUB_TOKEN | |
permissions: | |
contents: read | |
jobs: | |
microbenchmark: | |
runs-on: ubuntu-latest | |
# wait up to 1 hour | |
timeout-minutes: 60 | |
steps: | |
- id: buildkite | |
name: Run buildkite pipeline | |
uses: elastic/apm-pipeline-library/.github/actions/buildkite@current | |
env: | |
JAVA_VERSION: ${{ inputs.java_version || 'openjdk-17+35-linux' }} | |
with: | |
vaultUrl: ${{ secrets.VAULT_ADDR }} | |
vaultRoleId: ${{ secrets.VAULT_ROLE_ID }} | |
vaultSecretId: ${{ secrets.VAULT_SECRET_ID }} | |
pipeline: apm-agent-microbenchmark | |
triggerMessage: "${{ github.repository }}@${{ github.ref_name }}" | |
waitFor: true | |
printBuildLogs: true | |
buildEnvVars: | | |
script=.ci/scripts/bench.sh | |
repo=apm-agent-java | |
sha=${{ github.sha }} | |
JAVA_VERSION=${{ env.JAVA_VERSION }} | |
BRANCH_NAME=${{ github.ref_name }} | |
- if: ${{ failure() }} | |
uses: elastic/apm-pipeline-library/.github/actions/slack-message@current | |
with: | |
url: ${{ secrets.VAULT_ADDR }} | |
roleId: ${{ secrets.VAULT_ROLE_ID }} | |
secretId: ${{ secrets.VAULT_SECRET_ID }} | |
channel: "#apm-agent-java" | |
message: | | |
:ghost: [${{ github.repository }}] microbenchmark *${{ github.ref_name }}* failed to run in Buildkite. | |
Build: (<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|here>) |