Skip to content

Commit

Permalink
ci debug: capture the actual file location for the volume source, rev…
Browse files Browse the repository at this point in the history
…ert volume source path for Everest
  • Loading branch information
usuletw022 committed Mar 22, 2024
1 parent b0f91af commit b9c8bf1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 4 additions & 4 deletions e2e_tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ services:
- net.ipv6.conf.all.disable_ipv6=0
volumes:
- type: bind
source: /home/runner/work/maeve-csms/everest/config/everest
source: ./everest/config/everest
target: /ext/source/config
- type: bind
source: /home/runner/work/maeve-csms/everest/config/everest/ocpp/OCPP
source: ./everest/config/everest/ocpp/OCPP
target: /workspace/dist/share/everest/modules/OCPP
- type: bind
source: /home/runner/work/maeve-csms/everest/config/everest/ocpp/OCPP201
source: ./everest/config/everest/ocpp/OCPP201
target: /workspace/dist/share/everest/modules/OCPP201
- type: bind
source: /home/runner/work/maeve-csms/everest/config/everest/certs
source: ./everest/config/everest/certs
target: /workspace/dist/etc/everest/certs

nodered:
Expand Down
4 changes: 3 additions & 1 deletion e2e_tests/run-e2e-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ start_docker_compose_for_maeve_csms() {

# Function to start Docker Compose
start_docker_compose_for_everest() {
cd "$EVEREST_DIR" && make up
cd "$EVEREST_DIR"
pwd
ls
make up
if [ $? -ne 0 ]; then
echo "Failed to start Docker Compose for tests"
stop_docker_compose_for_everest
Expand Down

0 comments on commit b9c8bf1

Please sign in to comment.