From 53a5b86b1064a370b8fabd8e83fe831af65808d9 Mon Sep 17 00:00:00 2001 From: lukaszcl <120112546+lukaszcl@users.noreply.github.com> Date: Mon, 15 Jul 2024 09:03:18 +0200 Subject: [PATCH] Fix --- .github/workflows/integration-tests.yml | 2 +- integration-tests/ccip-tests/testconfig/global.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index a319e812912..f92dc1eb9ea 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -554,7 +554,7 @@ jobs: runId: ${{ github.run_id }} testLogCollect: ${{ vars.TEST_LOG_COLLECT }} selectedNetworks: SIMULATED_1,SIMULATED_2 - chainlinkVersion: ${{ github.sha }} + chainlinkVersion: ${{ inputs.evm-ref || github.sha }} logstreamLogTargets: ${{ vars.LOGSTREAM_LOG_TARGETS }} ## Run this step when changes that require tests to be run are made diff --git a/integration-tests/ccip-tests/testconfig/global.go b/integration-tests/ccip-tests/testconfig/global.go index 1a002362ee3..a1658a48416 100644 --- a/integration-tests/ccip-tests/testconfig/global.go +++ b/integration-tests/ccip-tests/testconfig/global.go @@ -115,7 +115,7 @@ func NewConfig() (*Config, error) { // load config overrides from env var if specified // there can be multiple overrides separated by comma rawConfigs, _ := osutil.GetEnv(OVERIDECONFIG) - if rawConfigs == "" { + if rawConfigs != "" { for _, rawConfig := range strings.Split(rawConfigs, ",") { err = DecodeConfig(rawConfig, &override) if err != nil {