Skip to content

Commit d90d039

Browse files
committed
Fix paths
1 parent 9c8f550 commit d90d039

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test_integration.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
- test-platform: AndroidSauceLabs
4040
runner: ubuntu-latest
4141
godot-arch: x86_64
42-
test-executable: ${{github.workspace}}/exports/android.apk
42+
test-executable: exports/android.apk
4343
- test-platform: iOSSauceLabs
4444
runner: macos-latest
4545
godot-arch: universal
46-
test-executable: ${{github.workspace}}/exports/ios/ios.ipa
46+
test-executable: exports/ios/ios.ipa
4747
steps:
4848
- name: Checkout repo
4949
uses: actions/checkout@v4
@@ -62,22 +62,22 @@ jobs:
6262
timeout-minutes: 10
6363
shell: bash
6464
run: |
65-
"${GODOT}" --verbose --headless --disable-crash-handler --path project --install-android-build-template --export-debug "Android Tests" "${{ matrix.test-executable }}" || true
65+
"${GODOT}" --verbose --headless --disable-crash-handler --path project --install-android-build-template --export-debug "Android Tests" "${{github.workspace}}/${{matrix.test-executable}}" || true
6666
6767
- name: Export project on iOS
6868
if: matrix.test-platform == 'iOSSauceLabs'
6969
timeout-minutes: 10
7070
shell: bash
7171
run: |
72-
mkdir -p "$(dirname "${{ matrix.test-executable }}")"
73-
"${GODOT}" --verbose --headless --disable-crash-handler --path project --export-debug "iOS Tests" "${{ matrix.test-executable }}" || true
72+
mkdir -p "$(dirname "${{github.workspace}}/${{matrix.test-executable}}")"
73+
"${GODOT}" --verbose --headless --disable-crash-handler --path project --export-debug "iOS Tests" "${{github.workspace}}/${{matrix.test-executable}}" || true
7474
7575
- name: Run integration tests
7676
shell: pwsh
7777
env:
7878
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_API_TOKEN }}
7979
SENTRY_TEST_PLATFORM: ${{ matrix.test-platform }}
80-
SENTRY_TEST_EXECUTABLE: ${{ matrix.test-executable }}
80+
SENTRY_TEST_EXECUTABLE: ${{github.workspace}}/${{matrix.test-executable}}
8181
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
8282
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
8383
SAUCE_REGION: us-west-1

0 commit comments

Comments
 (0)