Skip to content

Commit

Permalink
Debug directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Enkidu93 committed Oct 18, 2023
1 parent c73ed45 commit 921173f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
dotnet-version: 6.0.x

- name: Get Machine
run: cd .. && mkdir tmp && cd tmp && git clone https://github.com/sillsdev/machine.git && cd machine && dotnet build && cd ../../serval && dotnet build #separate repos to guarantee failures when grpc or data access is not up to date
run: cd .. && mkdir machine_testing_dir && cd machine_testing_dir && git clone https://github.com/sillsdev/machine.git && cd machine && dotnet build && cd ../../serval && dotnet build #separate repos to guarantee failures when grpc or data access is not up to date

- name: Restore dotnet tools
run: dotnet tool restore
Expand All @@ -44,7 +44,7 @@ jobs:
run: dotnet build --no-restore

- name: Start containers
run: export MACHINE_TESTING_DIR="../tmp/machine" && docker compose -f "docker-compose.yml" up -d && sleep 20 #allow time for mongo to start up properly
run: tree .. && export MACHINE_TESTING_DIR="../machine_testing_dir/machine" && docker compose -f "docker-compose.yml" up -d && sleep 20 #allow time for mongo to start up properly

- name: Debug network
run: docker ps -a && docker logs --since 10m serval_cntr && docker logs --since 10m echo_cntr && docker logs --since 10m machine-engine-cntr && docker logs --since 10m serval-mongo-1 && docker logs --since 10m machine-job-cntr
Expand Down

0 comments on commit 921173f

Please sign in to comment.