Skip to content

Commit

Permalink
triggering crib-integration-test from build-publish-develop-pr (thanks
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelfelix committed Dec 13, 2024
1 parent 099f2af commit f8cc105
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-publish-develop-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@ jobs:
repo: chainlink
github_token: ${{ steps.get-gh-token.outputs.access-token }}
workflow_file_name: crib-integration-test.yml
client_payload: '{"git_ref": "${{ env.GIT_REF }}", "image-tag": "${{ needs.image-tag.outputs.image-tag }}"}'
client_payload: '{"git_ref": "${{ env.GIT_REF }}", "image-tag": "${{ needs.image-tag.outputs.image-tag }}"}'
20 changes: 12 additions & 8 deletions .github/workflows/crib-integration-test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
name: CRIB Integration Tests
on:
pull_request:
paths:
- ".github/workflows/crib-integration-test.yml"
schedule:
- cron: "0 1 * * *"
workflow_call:
workflow_dispatch:
inputs:
git_ref:
description: "The git ref to check out"
required: true
image-tag:
required: true
description: The chainlink docker image tag to test against
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
group: ${{ github.workflow }}-${{ inputs.git_ref }}
cancel-in-progress: true
jobs:
test:
Expand All @@ -20,6 +22,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.1
with:
ref: ${{ inputs.git_ref }}

- uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
with:
Expand Down Expand Up @@ -89,7 +93,7 @@ jobs:
command: "core-dev-simulated-core-ocr1"
crib-alert-slack-webhook: ${{ secrets.CRIB_ALERT_SLACK_WEBHOOK }}
product-image: ${{ secrets.AWS_SDLC_ECR_HOSTNAME }}/chainlink
product-image-tag: develop
product-image-tag: ${{ inputs.image-tag }}
- uses: actions/checkout@v4.2.1
- name: Set up Go
uses: ./.github/actions/setup-go
Expand Down

0 comments on commit f8cc105

Please sign in to comment.