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
39 changes: 33 additions & 6 deletions .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,18 @@ jobs:
- name: Make binary executable
run: chmod +x bin/orchestrator

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build orchestrator runtime image
working-directory: tests/functional
run: docker build -t orchestrator-runtime:latest -f orchestrator-runtime.Dockerfile .
uses: docker/build-push-action@v6
with:
context: tests/functional
file: tests/functional/orchestrator-runtime.Dockerfile
tags: orchestrator-runtime:latest
load: true
cache-from: type=gha,scope=orchestrator-runtime
cache-to: type=gha,mode=max,scope=orchestrator-runtime

- name: Start test infrastructure (MySQL + ProxySQL)
working-directory: tests/functional
Expand Down Expand Up @@ -190,9 +199,18 @@ jobs:
- name: Make binary executable
run: chmod +x bin/orchestrator

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build orchestrator runtime image
working-directory: tests/functional
run: docker build -t orchestrator-runtime:latest -f orchestrator-runtime.Dockerfile .
uses: docker/build-push-action@v6
with:
context: tests/functional
file: tests/functional/orchestrator-runtime.Dockerfile
tags: orchestrator-runtime:latest
load: true
cache-from: type=gha,scope=orchestrator-runtime
cache-to: type=gha,mode=max,scope=orchestrator-runtime

- name: Start PostgreSQL containers
working-directory: tests/functional
Expand Down Expand Up @@ -315,9 +333,18 @@ jobs:
- name: Make binary executable
run: chmod +x bin/orchestrator

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build orchestrator runtime image
working-directory: tests/functional
run: docker build -t orchestrator-runtime:latest -f orchestrator-runtime.Dockerfile .
uses: docker/build-push-action@v6
with:
context: tests/functional
file: tests/functional/orchestrator-runtime.Dockerfile
tags: orchestrator-runtime:latest
load: true
cache-from: type=gha,scope=orchestrator-runtime
cache-to: type=gha,mode=max,scope=orchestrator-runtime

- name: Start MySQL infrastructure
working-directory: tests/functional
Expand Down
Loading