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.
This commit is contained in:
tduhamel42
2025-10-29 16:27:43 +01:00
parent 3fdbfcc6fd
commit 2bd0657d01

View File

@@ -237,7 +237,13 @@ jobs:
- name: Initialize test projects
run: |
echo "Initializing test projects..."
cd test_projects/android_test && ff init || true
mkdir -p test_projects/android_test/.fuzzforge
cat > test_projects/android_test/.fuzzforge/config.yaml <<EOF
project:
name: android_test
api_url: http://localhost:8000
id: test-$(uuidgen | tr '[:upper:]' '[:lower:]' | tr -d '-' | head -c 16)
EOF
- name: Run Android workflow test
run: |