Skip to content

Commit

Permalink
Adding missing symbols (#679)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaurushGarg authored Dec 30, 2023
1 parent 491620b commit c982749
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,14 @@ jobs:
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.JAVA_INSTRUMENTATION_SNAPSHOT_ECR }}
aws-region: {{ env.AWS_DEFAULT_REGION }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}

- name: Login to private staging ecr
uses: docker/login-action@v3
with:
registry: ${{ inputs.image_registry }}
env:
AWS_REGION: {{ env.AWS_DEFAULT_REGION }}
AWS_REGION: ${{ env.AWS_DEFAULT_REGION }}

- name: Build image for testing
uses: docker/build-push-action@v5
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ jobs:
with:
aws-region: us-west-2
image_uri_with_tag: ${{ steps.imageOutput.outputs.stagingImage }}
image_registry: {{ env.STAGING_ECR_REGISTRY }}
adot-java-version: {{ env.ADOT_JAVA_VERSION }}
image_registry: ${{ env.STAGING_ECR_REGISTRY }}
adot-java-version: ${{ env.ADOT_JAVA_VERSION }}

- name: Upload to GitHub Actions
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
uses: ./.github/workflows/e2e-tests-with-operator.yml
secrets: inherit
with:
aws-region: {{ env.AWS_DEFAULT_REGION }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}
image_tag: ${{ needs.build.outputs.java_agent_tag }}
image_uri: ${{ env.STAGING_ECR_REGISTRY }}/${{ env.STAGING_ECR_REPOSITORY }}
test_ref: ${{ needs.create-test-ref.outputs.testRef }}
Expand All @@ -162,7 +162,7 @@ jobs:
uses: ./.github/workflows/e2e-tests-app-with-java-agent.yml
secrets: inherit
with:
aws-region: {{ env.AWS_DEFAULT_REGION }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}
image_tag: ${{ github.sha }}
caller-workflow-name: 'main-build'

Expand All @@ -172,7 +172,7 @@ jobs:
uses: ./.github/workflows/contract-tests.yml
secrets: inherit
with:
aws-region: {{ env.AWS_DEFAULT_REGION }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}
caller-workflow-name: 'main-build'

# AppSignals specific e2e tests
Expand All @@ -184,7 +184,7 @@ jobs:
uses: ./.github/workflows/appsignals-e2e-eks-test.yml
secrets: inherit
with:
aws-region: {{ env.AWS_DEFAULT_REGION }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}
test-cluster-name: "e2e-adot-test"
appsignals-adot-image-name: ${{ needs.build.outputs.staging-image }}
caller-workflow-name: 'main-build'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nightly-upstream-snapshot-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ jobs:
with:
aws-region: us-west-2
image_uri_with_tag: ${{ steps.imageOutput.outputs.rcImage }}
image_registry: {{ env.IMAGE_REGISTRY }}
adot-java-version: {{ env.ADOT_JAVA_VERSION }}
image_registry: ${{ env.IMAGE_REGISTRY }}
adot-java-version: ${{ env.ADOT_JAVA_VERSION }}

- name: Upload to GitHub Actions
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
uses: ./.github/workflows/contract-tests.yml
secrets: inherit
with:
aws-region: {{ env.AWS_DEFAULT_REGION }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}
caller-workflow-name: 'nightly-upstream-snapshot-build'

# AppSignals specific e2e tests
Expand All @@ -138,7 +138,7 @@ jobs:
uses: ./.github/workflows/appsignals-e2e-eks-test.yml
secrets: inherit
with:
aws-region: {{ env.AWS_DEFAULT_REGION }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}
test-cluster-name: "e2e-adot-test"
appsignals-adot-image-name: ${{ needs.build.outputs.release-candidate-image }}
caller-workflow-name: 'nightly-upstream-snapshot-build'
Expand Down

0 comments on commit c982749

Please sign in to comment.