Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 10 additions & 2 deletions .github/workflows/keycloak.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- cron: '0 2 * * 1-5'
push:
paths:
- .github/workflows/keycloak.yml
- keycloak/**
branches:
- main
Expand All @@ -25,6 +26,13 @@ jobs:
permissions:
contents: read
timeout-minutes: 15
strategy:
matrix:
tag:
- latest
- dev
env:
IMAGE_NAME: localstack/localstack-pro:${{matrix.tag}}
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -35,8 +43,8 @@ jobs:
run: |
cd keycloak

docker pull localstack/localstack-pro &
docker pull quay.io/keycloak/keycloak:26.0 &
docker pull "$IMAGE_NAME"
docker pull quay.io/keycloak/keycloak:26.0
pip install localstack

make install
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/miniflare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- cron: '0 2 * * 1-5'
push:
paths:
- .github/workflows/miniflare.yml
- miniflare/**
branches:
- main
Expand All @@ -23,6 +24,13 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
tag:
- latest
- dev
env:
IMAGE_NAME: localstack/localstack-pro:${{matrix.tag}}
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -33,7 +41,7 @@ jobs:
run: |
cd miniflare

docker pull localstack/localstack-pro &
docker pull "$IMAGE_NAME"
pip install localstack

make install
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/paradedb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- cron: '0 2 * * 1-5'
push:
paths:
- .github/workflows/paradedb.yml
- paradedb/**
branches:
- main
Expand All @@ -25,6 +26,13 @@ jobs:
permissions:
contents: read
timeout-minutes: 10
strategy:
matrix:
tag:
- latest
- dev
env:
IMAGE_NAME: localstack/localstack-pro:${{matrix.tag}}
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -35,8 +43,8 @@ jobs:
run: |
cd paradedb

docker pull localstack/localstack-pro &
docker pull paradedb/paradedb &
docker pull "$IMAGE_NAME"
docker pull paradedb/paradedb
pip install localstack

make install
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/typedb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- cron: '0 2 * * 1-5'
push:
paths:
- .github/workflows/typedb.yml
- typedb/**
branches:
- main
Expand All @@ -25,6 +26,13 @@ jobs:
permissions:
contents: read
timeout-minutes: 10
strategy:
matrix:
tag:
- latest
- dev
env:
IMAGE_NAME: localstack/localstack-pro:${{matrix.tag}}
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -35,8 +43,8 @@ jobs:
run: |
cd typedb

docker pull localstack/localstack-pro &
docker pull typedb/typedb &
docker pull "$IMAGE_NAME"
docker pull typedb/typedb
pip install localstack

make install
Expand Down
15 changes: 12 additions & 3 deletions .github/workflows/wiremock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ on:
branches:
- main
paths:
- .github/workflows/wiremock.yml
- 'wiremock/**'
push:
branches:
- main
paths:
- .github/workflows/wiremock.yml
- 'wiremock/**'
workflow_dispatch:

Expand All @@ -26,6 +28,13 @@ jobs:
permissions:
contents: read
timeout-minutes: 10
strategy:
matrix:
tag:
- latest
- dev
env:
IMAGE_NAME: localstack/localstack-pro:${{matrix.tag}}
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand All @@ -39,9 +48,9 @@ jobs:
run: |
cd wiremock

docker pull localstack/localstack-pro &
docker pull wiremock/wiremock &
docker pull public.ecr.aws/lambda/python:3.12 &
docker pull "$IMAGE_NAME"
docker pull wiremock/wiremock
docker pull public.ecr.aws/lambda/python:3.12
pip install localstack terraform-local awscli-local[ver1]

make install
Expand Down