Skip to content

Commit

Permalink
use docker compose instead
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman committed Jun 15, 2024
1 parent bcfb797 commit 9ed6469
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
env:
KUBECONFIG: ${{github.workspace}}/output/kubeconfig.yaml
KUBECONFIG: ${{github.workspace}}/examples/${{ matrix.demo-folder }}/output/kubeconfig.yaml
strategy:
matrix:
demo-folder:
Expand All @@ -149,18 +149,18 @@ jobs:
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Start Docker Compose
working-directory: examples/${{ matrix.demo-folder }}
run: docker compose up -d --wait

- name: Debug
run: |
ls -l ${{github.workspace}}/output
ls -l examples/${{ matrix.demo-folder }}/output
docker ps
for i in {1..30}; do
ls -l ${{github.workspace}}/output
ls -l examples/${{ matrix.demo-folder }}/output
docker ps
sleep 1
done
Expand Down

0 comments on commit 9ed6469

Please sign in to comment.