Bump com.amazonaws:aws-java-sdk-bom from 1.12.533 to 1.12.557 #110
Workflow file for this run
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: PR Build | |
on: | |
pull_request: | |
branches: | |
- main | |
- "release/v*" | |
env: | |
TEST_TAG: public.ecr.aws/aws-observability/adot-autoinstrumentation-java:test | |
jobs: | |
testpatch: | |
name: Test patches applied to dependencies | |
runs-on: ubuntu-latest | |
if: ${{ startsWith(github.event.pull_request.base.ref, 'release/v') }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
# vaadin 14 tests fail with node 18 | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
# vaadin tests use pnpm | |
- name: Cache pnpm modules | |
uses: actions/cache@v3 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-test-cache-pnpm-modules | |
- uses: gradle/wrapper-validation-action@v1 | |
- uses: ./.github/actions/patch-dependencies | |
with: | |
run_tests: "true" | |
branch: ${{ github.event.pull_request.base.ref }} | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
gpg_password: ${{ secrets.GPG_PASSPHRASE }} | |
build: | |
name: Build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-latest | |
- windows-latest | |
exclude: | |
# Skip windows on patch workflow because it is not possible to build opentelemetry-java on windows | |
# when the cache is in a different drive than the source code | |
# Windows is not working for patch workflows, therefore we disable it here | |
# https://github.com/square/wire/issues/2188 | |
# https://github.com/open-telemetry/opentelemetry-java/issues/4560 | |
- os: ${{ startsWith(github.event.pull_request.base.ref, 'release/v') && 'windows-latest' || '' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- uses: gradle/wrapper-validation-action@v1 | |
- name: Publish patched dependencies to maven local | |
uses: ./.github/actions/patch-dependencies | |
if: ${{ startsWith(github.event.pull_request.base.ref, 'release/v') }} | |
with: | |
branch: ${{ github.event.pull_request.base.ref }} | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
gpg_password: ${{ secrets.GPG_PASSPHRASE }} | |
- name: Build with Gradle with Integration tests | |
uses: gradle/gradle-build-action@v2 | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
with: | |
arguments: build integrationTests --stacktrace -PenableCoverage=true -PlocalDocker=true | |
- name: Get current version | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
shell: bash | |
run: | | |
echo "ADOT_JAVA_VERSION=$(./gradlew printVersion -q )" >> $GITHUB_ENV | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
- name: Build image for testing | |
uses: docker/build-push-action@v4 | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
with: | |
push: false | |
build-args: "ADOT_JAVA_VERSION=${{ env.ADOT_JAVA_VERSION }}" | |
context: . | |
platforms: linux/amd64 | |
tags: ${{ env.TEST_TAG }} | |
load: true | |
- name: Test docker image | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
shell: bash | |
run: .github/scripts/test-adot-javaagent-image.sh "${{ env.TEST_TAG }}" "${{ env.ADOT_JAVA_VERSION }}" | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
if: ${{ matrix.os != 'ubuntu-latest' }} | |
with: | |
arguments: build --stacktrace -PenableCoverage=true | |
- uses: codecov/codecov-action@v3 |