Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ default:
- echo -e "${dind_ip}\tlocalhost.localstack.cloud\n" >> /etc/hosts
- localstack start -d
- localstack wait -t 30
- (test -f ./ls-state-pod.zip && localstack state import ./ls-state-pod) || true
- mkdir -p /usr/lib/localstack
- (test -f ./ls-state-pod.zip && localstack state import ./ls-state-pod.zip) || true
cache:
paths:
- $CI_PROJECT_DIR/.cache/pip
Expand All @@ -58,7 +59,8 @@ deploy:
script:
- ./bin/build_lambdas.sh
- ./deployment/awslocal/deploy.sh
- localstack state export ls-state-pod
- mkdir -p /usr/lib/localstack
- localstack state export ls-state-pod.zip

test:
stage: test
Expand Down