Skip to content

Commit e50585a

Browse files
committed
added ls image version and uncommented sql test
1 parent df0bbbc commit e50585a

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/run-samples.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,15 @@ jobs:
8787
docker builder prune -af
8888
8989
- name: Pull LocalStack Azure Image
90-
# Explicitly pull the image before starting. This mirrors the "Build Docker Image"
90+
# Explicitly pull the image before starting. This mirrors the "Build Docker Image"
9191
# step in localstack-pro and ensures the pull logic is separated from the start logic.
9292
run: docker pull ${{ env.IMAGE_NAME }}:${{ env.DEFAULT_TAG }}
9393

94+
- name: Check LocalStack Image Info
95+
run: |
96+
echo "Image creation date:"
97+
docker inspect --format='{{.Created}}' ${{ env.IMAGE_NAME }}:${{ env.DEFAULT_TAG }}
98+
9499
- name: Start LocalStack
95100
# Run the emulator in detached mode using the virtual environment.
96101
# We use 'python -m localstack.cli.main' to ensure the correct CLI version from the venv is used.

run-samples.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ TERRAFORM_SAMPLES=(
9494

9595
# 3b. Define Bicep Samples
9696
BICEP_SAMPLES=(
97-
#"samples/web-app-sql-database/python/bicep|bash deploy.sh"
97+
"samples/web-app-sql-database/python/bicep|bash deploy.sh"
9898
"samples/function-app-managed-identity/python/bicep|bash deploy.sh"
9999
"samples/function-app-storage-http/dotnet/bicep|bash deploy.sh"
100100
"samples/web-app-cosmosdb-mongodb-api/python/bicep|bash deploy.sh"

0 commit comments

Comments
 (0)