diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 39eda1e6956..4e33cd929cb 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -533,15 +533,16 @@ jobs: env: PYROSCOPE_SERVER: ${{ matrix.product.pyroscope_env == '' && '' || !startsWith(github.ref, 'refs/tags/') && '' || secrets.QA_PYROSCOPE_INSTANCE }} # Avoid sending blank envs https://github.com/orgs/community/discussions/25725 PYROSCOPE_ENVIRONMENT: ${{ matrix.product.pyroscope_env }} + PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }} RUN_ID: ${{ github.run_id }} TEST_LOG_COLLECT: ${{ vars.TEST_LOG_COLLECT }} CHAINLINK_VERSION: ${{ github.sha }} LOKI_TENANT_ID: ${{ vars.LOKI_TENANT_ID }} LOGSTREAM_LOG_TARGETS: ${{ vars.LOGSTREAM_LOG_TARGETS }} GRAFANA_URL: ${{ vars.GRAFANA_URL }} - BASE64_CONFIG_OVERRIDE: "W0VtcHR5XQo=" + LOKI_BASIC_AUTH: ${{ secrets.LOKI_BASIC_AUTH }} run: | - echo ::add-mask::$BASE64_CONFIG_OVERRIDE + echo ::add-mask::$CHAINLINK_IMAGE convert_to_toml_array() { local IFS=',' @@ -575,13 +576,14 @@ jobs: selected_networks=$selected_networks [ChainlinkImage] - image="chainlink" + image="$CHAINLINK_IMAGE" version="$CHAINLINK_VERSION" [Pyroscope] enabled=false server_url="$PYROSCOPE_SERVER" environment="$PYROSCOPE_ENVIRONMENT" + key="$PYROSCOPE_KEY" [Logging] test_log_collect=$test_log_collect @@ -593,6 +595,7 @@ jobs: [Logging.Loki] loki_tenant_id="$LOKI_TENANT_ID" loki_url="$LOKI_URL" + loki_basic_auth="" [Logging.Grafana] grafana_url="$GRAFANA_URL" diff --git a/integration-tests/smoke/config_test.go b/integration-tests/smoke/config_test.go index ae635168442..55a7f7877e7 100644 --- a/integration-tests/smoke/config_test.go +++ b/integration-tests/smoke/config_test.go @@ -1,22 +1,19 @@ package smoke import ( - "fmt" "testing" - "github.com/smartcontractkit/chainlink-testing-framework/logging" - tc "github.com/smartcontractkit/chainlink/integration-tests/testconfig" + "github.com/stretchr/testify/require" ) func TestConfig(t *testing.T) { t.Parallel() - l := logging.GetTestLogger(t) - config, err := tc.GetConfig(t.Name(), tc.Smoke, tc.OCR) + _, err := tc.GetConfig(t.Name(), tc.Smoke, tc.OCR) if err != nil { t.Fatal(err) } - l.Info().Msg(fmt.Sprintf("%+v", config)) + require.True(t, false, "err on purpose") }