Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
mojganii committed Oct 28, 2024
1 parent f5f1273 commit b3befaa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ios-end-to-end-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,17 +85,17 @@ jobs:
with:
clean: true
ref: ${{ env.COMMIT_HASH }}
path: ./${{ env.COMMIT_HASH }} # Checkout to a path based on COMMIT_HASH
path: ${{ env.COMMIT_HASH }} # Checkout to a path based on COMMIT_HASH

- name: Change to commit directory
run: |
cd ./${{ env.COMMIT_HASH }} # Navigate into the checked out directory
cd ${{ env.COMMIT_HASH }} # Navigate into the checked out directory
shell: bash

- name: Show directory contents
run: |
echo "Contents of the directory after checkout:"
ls -al ./${{ env.COMMIT_HASH }} # List the contents of the checked out directory
ls -al ${{ env.COMMIT_HASH }} # List the contents of the checked out directory
shell: bash

- name: Configure Rust
Expand All @@ -116,7 +116,7 @@ jobs:
test_device_udid: ${{ env.TEST_DEVICE_UDID }}
partner_api_token: ${{ secrets.STAGEMOLE_PARTNER_AUTH }}
outputs_path: ${{ needs.set-up-outputs-directory.outputs.job_outputs_directory }}
base_directory: ./${{ env.COMMIT_HASH }} # Adjusted base directory
base_directory: ${{ env.COMMIT_HASH }} # Adjusted base directory

- name: Debug print job output directory
run: |
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
test_name: "MullvadVPNUITests/${{ matrix.test_suite }}"
test_device_udid: ${{ env.TEST_DEVICE_UDID }}
outputs_path: ${{ needs.set-up-outputs-directory.outputs.job_outputs_directory }}
base_directory: ./${{ env.COMMIT_HASH }} # Adjusted base directory
base_directory: ${{ env.COMMIT_HASH }}

clean-up-outputs-directory:
if: always()
Expand Down

0 comments on commit b3befaa

Please sign in to comment.