conflicting pathing
Some checks failed
CI - Multi-Platform Native / Build iOS (RSSuper) (push) Has been cancelled
CI - Multi-Platform Native / Build macOS (push) Has been cancelled
CI - Multi-Platform Native / Build Android (push) Has been cancelled
CI - Multi-Platform Native / Build Linux (push) Has been cancelled
CI - Multi-Platform Native / Integration Tests (push) Has been cancelled
CI - Multi-Platform Native / Build Summary (push) Has been cancelled

This commit is contained in:
2026-03-31 11:46:15 -04:00
parent ba1e2e96e7
commit 199c711dd4
23 changed files with 3439 additions and 378 deletions

View File

@@ -272,7 +272,7 @@ jobs:
- name: Build Android Debug
run: |
cd native-route/android
cd android
# Create basic Android project structure if it doesn't exist
if [ ! -f "build.gradle.kts" ]; then
@@ -286,8 +286,8 @@ jobs:
if: always()
uses: actions/upload-artifact@v4
with:
name: RSSuper-Android-Debug
path: native-route/android/app/build/outputs/apk/debug/*.apk
name: RSSSuper-Android-Debug
path: android/app/build/outputs/apk/debug/*.apk
if-no-files-found: ignore
retention-days: 7
@@ -344,7 +344,7 @@ jobs:
- name: Run Android Integration Tests
run: |
cd native-route/android
cd android
./gradlew connectedAndroidTest || echo "Integration tests not yet configured"
- name: Upload Test Results
@@ -352,7 +352,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: integration-test-results
path: native-route/android/app/build/outputs/androidTest-results/
path: android/app/build/outputs/androidTest-results/
if-no-files-found: ignore
retention-days: 7