-
In my workflow, following the documentation and doing some extra work, I try to run integration tests on iOS for my Flutter app, by running the following script: - name: Integration tests iOS
script: |
cd ios
pod cache clean --all
rm -rf Podfile.lock
rm -rf ~/Library/Caches/CocoaPods
rm -rf Pods
rm -rf ~/Library/Developer/Xcode/DerivedData/*
pod deintegrate
pod install
cd ..
flutter clean
flutter pub get
flutter emulators --launch apple_ios_simulator
flutter -d iPhone test --machine > test-results/flutter.json integration_test --flavor free
test_report: test-results/flutter.json But for some reason, I got the following error:
And here is the log, where we can see the error
And here is the build ID: What did I do wrong? |
Beta Was this translation helpful? Give feedback.
Answered by
himesh-cm
Jan 18, 2023
Replies: 1 comment 3 replies
-
Hi @mregnauld, Let me check, i will get back to you. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
himesh-cm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @mregnauld, Let me check, i will get back to you.