Skip to content

Commit

Permalink
remove soak test reference
Browse files Browse the repository at this point in the history
  • Loading branch information
aalu1418 committed May 22, 2024
1 parent 5466334 commit 6c99008
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-test-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ runs:
build-args: |
BASE_IMAGE=${{ inputs.QA_AWS_ACCOUNT_NUMBER }}.dkr.ecr.${{ inputs.QA_AWS_REGION }}.amazonaws.com/test-base-image
IMAGE_VERSION=${{ steps.version.outputs.version }}
SUITES="soak smoke"
SUITES="smoke"
AWS_REGION: ${{ inputs.QA_AWS_REGION }}
AWS_ROLE_TO_ASSUME: ${{ inputs.QA_AWS_ROLE_TO_ASSUME }}
- name: Print Image Built
Expand Down
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,6 @@ test_smoke:
cd ./integration-tests &&\
SELECTED_NETWORKS=SIMULATED go test -timeout 24h -count=1 -json $(args) -run TestSolanaOCRV2Smoke ./smoke 2>&1 | tee /tmp/gotest.log | gotestfmt

test_ocr_soak:
cd ./integration-tests &&\
SELECTED_NETWORKS=SIMULATED go test -timeout 24h -count=1 -json $(args) ./soak 2>&1 | tee /tmp/gotest.log | gotestfmt

gomodtidy:
go mod tidy
cd ./integration-tests && go mod tidy
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/scripts/buildTestImage
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cd "$SCRIPT_DIR"/../../ || exit 1
TAG_VERSION="${1}"
BASE_IMAGE_VERSION="${2}"
SUITES=$3
DEFAULT_SUITES="smoke soak"
DEFAULT_SUITES="smoke"
ACCOUNT=$(aws sts get-caller-identity | jq -r .Account)
AWS_BASE="${ACCOUNT}".dkr.ecr.us-west-2.amazonaws.com
TAG="${AWS_BASE}"/chainlink-solana-tests:"${TAG_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/test.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG BASE_IMAGE
ARG IMAGE_VERSION=latest
FROM ${BASE_IMAGE}:${IMAGE_VERSION}

ARG SUITES=smoke soak
ARG SUITES=smoke

COPY . testdir/
WORKDIR /go/testdir
Expand Down

0 comments on commit 6c99008

Please sign in to comment.