From b3befaad36c84be21798ed588522f031185dc37b Mon Sep 17 00:00:00 2001 From: mojganii Date: Mon, 28 Oct 2024 17:19:45 +0100 Subject: [PATCH] Test --- .github/workflows/ios-end-to-end-tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ios-end-to-end-tests.yml b/.github/workflows/ios-end-to-end-tests.yml index ec8c323b83b7..c0720c3f4ec9 100644 --- a/.github/workflows/ios-end-to-end-tests.yml +++ b/.github/workflows/ios-end-to-end-tests.yml @@ -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 @@ -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: | @@ -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()