Skip to content

Commit

Permalink
ci: pin the previous local stack version to fix the failure (#81)
Browse files Browse the repository at this point in the history
*Description of changes:*

Suppress the failure caused by
localstack/localstack#9253


By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice.

Signed-off-by: Ziwen Ning <[email protected]>
  • Loading branch information
ningziwen authored Sep 29, 2023
1 parent cf9364f commit 04c82cf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ jobs:
cache: false
- name: Start LocalStack # Copy from https://docs.localstack.cloud/user-guide/ci/github-actions/
run: |
pip install localstack awscli-local[ver1] # install LocalStack cli and awslocal
docker pull localstack/localstack # Make sure to pull the latest version of the image
LOCALSTACK_VERSION=2.2.0
pip install localstack==${LOCALSTACK_VERSION} awscli-local[ver1] # install LocalStack cli and awslocal
docker pull localstack/localstack:${LOCALSTACK_VERSION} # Make sure to pull the latest version of the image
localstack start -d # Start LocalStack in the background
echo "Waiting for LocalStack startup..." # Wait 30 seconds for the LocalStack container
Expand Down

0 comments on commit 04c82cf

Please sign in to comment.