build: bump version.aws.sdk in /apm-agent-plugins (#3895) #605
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: snapshot | |
on: | |
push: | |
branches: | |
- "main" | |
workflow_dispatch: | |
inputs: | |
dry_run: | |
description: If set, run a dry-run snapshot | |
default: false | |
type: boolean | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
outputs: | |
is-snapshot: ${{ steps.validate-step.outputs.is-snapshot }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Validate version is a snapshot version | |
id: validate-step | |
run: | | |
output=false | |
if [[ "$(./mvnw -q help:evaluate -Dexpression=project.version -DforceStdout)" =~ "-SNAPSHOT" ]]; then | |
echo "This is a snapshot version" | |
output=true | |
fi | |
echo "is-snapshot=${output}" >> "$GITHUB_OUTPUT" | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
needs: | |
- validate | |
permissions: | |
attestations: write | |
contents: write | |
id-token: write | |
env: | |
TARBALL_FILE: artifacts.tar | |
if: ${{ contains(needs.validate.outputs.is-snapshot, 'true') }} | |
steps: | |
- id: buildkite-run | |
continue-on-error: true | |
uses: elastic/oblt-actions/buildkite/run@v1 | |
with: | |
branch: ${{ github.ref_name }} | |
pipeline: "apm-agent-java-snapshot" | |
token: ${{ secrets.BUILDKITE_TOKEN }} | |
wait-for: true | |
env-vars: | | |
dry_run=${{ inputs.dry_run || 'false' }} | |
TARBALL_FILE=${{ env.TARBALL_FILE }} | |
- uses: elastic/oblt-actions/buildkite/download-artifact@v1 | |
with: | |
build-number: ${{ steps.buildkite-run.outputs.number }} | |
path: "${{ env.TARBALL_FILE }}" | |
pipeline: ${{ steps.buildkite-run.outputs.pipeline }} | |
token: ${{ secrets.BUILDKITE_TOKEN }} | |
- name: untar the buildkite tarball | |
run: tar xvf ${{ env.TARBALL_FILE }} | |
- name: generate build provenance | |
uses: actions/attest-build-provenance@c4fbc648846ca6f503a13a2281a5e7b98aa57202 # v2.0.1 | |
with: | |
subject-path: "${{ github.workspace }}/**/target/*.jar" | |
build-docker-images: | |
name: "Build docker images" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Log in to the Elastic Container registry | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | |
with: | |
registry: ${{ secrets.ELASTIC_DOCKER_REGISTRY }} | |
username: ${{ secrets.ELASTIC_DOCKER_USERNAME }} | |
password: ${{ secrets.ELASTIC_DOCKER_PASSWORD }} | |
- name: prepare context for testing docker build | |
run: | | |
mkdir -p elastic-apm-agent/target | |
curl -L -s -o elastic-apm-agent/target/elastic-apm-agent-1.49.0.jar \ | |
"https://oss.sonatype.org/service/local/artifact/maven/redirect?r=releases&g=co.elastic.apm&a=elastic-apm-agent&v=1.49.0" | |
- name: "Build docker image" | |
run: ./scripts/docker-release/build_docker.sh "test" | |
notify: | |
needs: | |
- build-docker-images | |
- deploy | |
- validate | |
runs-on: ubuntu-latest | |
steps: | |
- id: check | |
uses: elastic/oblt-actions/check-dependent-jobs@v1 | |
with: | |
jobs: ${{ toJSON(needs) }} | |
- if: ${{ failure() && ! inputs.dry_run }} | |
uses: elastic/oblt-actions/slack/send@v1 | |
with: | |
bot-token: ${{ secrets.SLACK_BOT_TOKEN }} | |
channel-id: "#apm-agent-java" | |
message: | | |
:ghost: [${{ github.repository }}] Snapshot *${{ github.ref_name }}* didn't get triggered in Buildkite. | |
Build: (<${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|here>) |