Skip to content

Commit

Permalink
fix(ci:gitlab): fix diagnose endpoint url
Browse files Browse the repository at this point in the history
  • Loading branch information
lakkeger committed Feb 21, 2024
1 parent 179bac4 commit 9f0d0d8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ variables:
PIP_CACHE_DIR: $CI_PROJECT_DIR/.cache/pip
DOCKER_HOST: tcp://docker:2375
DOCKER_TLS_CERTDIR: ""
DEBUG: 1
LS_LOG: trace
# CI_DEBUG_TRACE: "true"

services:
- name: docker:20.10.16-dind
Expand All @@ -35,11 +37,12 @@ default:
- echo "${dind_ip} localhost.localstack.cloud " >> /etc/hosts
- localstack start -d
- localstack wait -t 30
- curl "$AWS_ENDPOINT_URL/_localstack/health"
- (test -f ./ls-state-pod.zip && localstack state import ./ls-state-pod.zip) || true
after_script:
- docker ps | tee docker_ps.log
- docker inspect localstack-main | tee docker_inspect.log
- curl ${AWS_ENDPOINT_URL}:4566/_localstack/diagnose | tee ls_diagnose.log
- (curl "$AWS_ENDPOINT_URL/_localstack/diagnose" | tee ls_diagnose.log) || true
- localstack logs | tee ls_runlogs.log
cache:
paths:
Expand Down

0 comments on commit 9f0d0d8

Please sign in to comment.