From bd641f396ef056c680ece78bfdaee9d72ba7e6c2 Mon Sep 17 00:00:00 2001 From: Robert Schulze Dieckhoff Date: Mon, 9 Sep 2024 13:35:04 +0200 Subject: [PATCH] Test --- .github/workflows/iOS_clean_build.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/iOS_clean_build.yml b/.github/workflows/iOS_clean_build.yml index add12c23..2c75eaa0 100644 --- a/.github/workflows/iOS_clean_build.yml +++ b/.github/workflows/iOS_clean_build.yml @@ -17,6 +17,7 @@ jobs: device: iPhone 15 strategy: matrix: + iPhone: ["iPhone 15"] flutter-version: [ "3.24.0" ] timeout-minutes: 30 @@ -32,9 +33,7 @@ jobs: - run: flutter pub get - - run: xcrun simctl list - - run: open -a Simulator && xcrun simctl boot 'iPhone 15' - - run: flutter devices + - run: open -a Simulator && xcrun simctl boot ${{ matrix.iPhone }} - run: | flutter create --template=app --platforms=android,ios demo_project @@ -42,4 +41,6 @@ jobs: cd demo_project dart pub add 'adyen_checkout:{"path":"../"}' - flutter build ios --release --no-codesign + flutter build ios --debug --simulator + xcrun simctl install ${{ matrix.iPhone }} build/ios/iphonesimulator/Runner.app + xcrun simctl launch ${{ matrix.iPhone }} com.adyen.AdyenUIHost \ No newline at end of file