Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.

Commit 2bd0657

Browse files
committed
fix: update android platform tests to use manual project init
Android Worker Platform Tests job was still using 'ff init' which requires interaction. Updated to use manual .fuzzforge creation like the fast-workflow-tests job. This fixes the 'No FuzzForge project found' error in android workflow tests.
1 parent 3fdbfcc commit 2bd0657

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/test-workflows.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,13 @@ jobs:
237237
- name: Initialize test projects
238238
run: |
239239
echo "Initializing test projects..."
240-
cd test_projects/android_test && ff init || true
240+
mkdir -p test_projects/android_test/.fuzzforge
241+
cat > test_projects/android_test/.fuzzforge/config.yaml <<EOF
242+
project:
243+
name: android_test
244+
api_url: http://localhost:8000
245+
id: test-$(uuidgen | tr '[:upper:]' '[:lower:]' | tr -d '-' | head -c 16)
246+
EOF
241247
242248
- name: Run Android workflow test
243249
run: |

0 commit comments

Comments
 (0)