Launch CRIBs on pre-release tags (GAP v2 edition) #2090
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: CRIB Integration Tests | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/crib-integration-test.yml" | |
schedule: | |
- cron: "0 1 * * *" | |
workflow_call: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
environment: integration | |
permissions: | |
id-token: write | |
contents: read | |
actions: read | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Run CRIB Integration Tests | |
uses: ./.github/actions/crib | |
with: | |
aws-role-arn: ${{ secrets.AWS_OIDC_CRIB_ROLE_ARN_STAGE }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
aws-account-id: ${{ secrets.AWS_ACCOUNT_ID_PROD }} | |
api-gw-host-crib: ${{ secrets.AWS_API_GW_HOST_CRIB_STAGE }} | |
api-gw-host-k8s: ${{ secrets.AWS_API_GW_HOST_K8S_STAGE }} | |
k8s-api-endpoint: ${{ secrets.GAP_HOST_K8S_STAGE }} | |
k8s-cluster-name: ${{ secrets.AWS_K8S_CLUSTER_NAME_STAGE }} | |
aws-token-issuer-role-arn: ${{ secrets.AWS_OIDC_GLOBAL_READ_ONLY_TOKEN_ISSUER_ROLE_ARN }} | |
aws-token-issuer-lambda-url: ${{ secrets.AWS_INFRA_RELENG_TOKEN_ISSUER_LAMBDA_URL }} | |
ingress-base-domain: ${{ secrets.INGRESS_BASE_DOMAIN_STAGE }} | |
k8s-staging-ingress-suffix: ${{ secrets.K8S_STAGING_INGRESS_SUFFIX }} | |
crib-alert-slack-webhook: ${{ secrets.CRIB_ALERT_SLACK_WEBHOOK }} | |
crib-chainlink-docker-image-name: ${{ secrets.AWS_SDLC_ECR_HOSTNAME }}/chainlink | |
crib-chainlink-docker-image-tag: develop |