Skip to content

Commit 7285cce

Browse files
authored
cI: fix the gitlab ci pipeline (#48)
1 parent b6c0f89 commit 7285cce

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.gitlab-ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ default:
3636
- echo -e "${dind_ip}\tlocalhost.localstack.cloud\n" >> /etc/hosts
3737
- localstack start -d
3838
- localstack wait -t 30
39-
- (test -f ./ls-state-pod.zip && localstack state import ./ls-state-pod) || true
39+
- mkdir -p /usr/lib/localstack
40+
- (test -f ./ls-state-pod.zip && localstack state import ./ls-state-pod.zip) || true
4041
cache:
4142
paths:
4243
- $CI_PROJECT_DIR/.cache/pip
@@ -58,7 +59,8 @@ deploy:
5859
script:
5960
- ./bin/build_lambdas.sh
6061
- ./deployment/awslocal/deploy.sh
61-
- localstack state export ls-state-pod
62+
- mkdir -p /usr/lib/localstack
63+
- localstack state export ls-state-pod.zip
6264

6365
test:
6466
stage: test

0 commit comments

Comments
 (0)