Skip to content

Commit

Permalink
Feature/e2e-tests add logging for directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ladamesny committed Oct 17, 2024
1 parent f0b55f2 commit 9fef6ca
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,13 @@ jobs:
ssh_key: ${{ secrets.SUBSTRATE_REPO_SSH_KEY }}
config_tar: ${{ secrets.EARTHLY_TAR }}

- name: List directory structure
run: |
echo "Current directory:"
pwd
echo "Directory structure:"
tree -L 3 || ls -R # tree command might not be available, so we use ls -R as a fallback
- name: run
env:
EARTHLY_BUILD_ARGS: "CI_RUN=true"
Expand All @@ -106,6 +113,13 @@ jobs:
JIRA_URL: ${{ secrets.JIRA_URL }}
MARKERS: "not active_flow and not passive_flow"
run: |
echo "Current directory:"
pwd
echo "Contents of current directory:"
ls -la
echo "Contents of E2E-tests directory (if it exists):"
ls -la E2E-tests || echo "E2E-tests directory not found"
earthly \
--secret AWS_SESSION_TOKEN="$AWS_SESSION_TOKEN" \
--secret AWS_ACCESS_KEY_ID="$AWS_ACCESS_KEY_ID" \
Expand Down

0 comments on commit 9fef6ca

Please sign in to comment.