Skip to content

Commit a69bbea

Browse files
Build 0.7.1 (#98)
* Added namespace * Fix namespace * Try ndkVersion flutter.ndkVersion * Remove ndkVersion * Trying to fix tests * Test mac on sonoma * Update simulator runtime to iOS-17-2 * Update simulator name * Test iOS on macos-monterey * Rollback simulator SDK * Test iOS on Ventura * simulartor 17.2 * Bump version to 0.7.1, bump dependencies * Delay during publishing
1 parent e44dff1 commit a69bbea

File tree

31 files changed

+345
-414
lines changed

31 files changed

+345
-414
lines changed

.appveyor.yml

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
image: macos-monterey
2-
31
skip_branch_with_pr: true
42

53
environment:
64
PYTHON_STACK: python 3.10
7-
FLUTTER_MACOS_URL: https://storage.googleapis.com/flutter_infra_release/releases/stable/macos/flutter_macos_3.13.7-stable.zip
85
GITHUB_TOKEN:
96
secure: doX0dwjWhBmT56aJqR9NCbtMFJpDpdYxPCIB4vQoHfSR+nTa+pLCo6Yv5qWpD/90
107

@@ -22,10 +19,10 @@ environment:
2219
job_depends_on: build_python_darwin
2320
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey
2421

25-
- job_name: Test on iOS
26-
job_group: test_serious_python
27-
job_depends_on: build_python_darwin
28-
APPVEYOR_BUILD_WORKER_IMAGE: macos-monterey
22+
# - job_name: Test on iOS
23+
# job_group: test_serious_python
24+
# job_depends_on: build_python_darwin
25+
# APPVEYOR_BUILD_WORKER_IMAGE: macos-sonoma
2926

3027
- job_name: Test on Android
3128
job_group: test_serious_python
@@ -176,10 +173,6 @@ for:
176173

177174
install:
178175
- HOMEBREW_NO_AUTO_UPDATE=1 brew install cocoapods
179-
- curl $FLUTTER_MACOS_URL -o "$HOME/flutter_macos_stable.zip"
180-
- unzip -qq "$HOME/flutter_macos_stable.zip" -d $HOME
181-
- export PATH="$PATH:$HOME/flutter/bin"
182-
- flutter channel stable
183176
- flutter upgrade
184177
- flutter config --enable-macos-desktop
185178
- flutter doctor
@@ -208,17 +201,13 @@ for:
208201

209202
install:
210203
- HOMEBREW_NO_AUTO_UPDATE=1 brew install cocoapods
211-
- curl $FLUTTER_MACOS_URL -o "$HOME/flutter_macos_stable.zip"
212-
- unzip -qq "$HOME/flutter_macos_stable.zip" -d $HOME
213-
- export PATH="$PATH:$HOME/flutter/bin"
214-
- flutter channel stable
215204
- flutter upgrade
216205
- flutter config --enable-macos-desktop
217206
- xcrun simctl list runtimes
218-
- xcrun simctl create "e2e test" "iPhone 12" "com.apple.CoreSimulator.SimRuntime.iOS-16-1"
207+
- xcrun simctl create "e2e test" "iPhone 12" "com.apple.CoreSimulator.SimRuntime.iOS-17-2"
219208
- xcrun xctrace list devices
220209
- |
221-
UDID=$(xcrun xctrace list devices | grep "^e2e test Simulator (16.1)" | awk '{gsub(/[()]/,""); print $NF}')
210+
UDID=$(xcrun xctrace list devices | grep "^e2e test Simulator (17.2)" | awk '{gsub(/[()]/,""); print $NF}')
222211
echo $UDID
223212
xcrun simctl boot "${UDID:?No Simulator with this name found}"
224213
#- flutter doctor -v
@@ -386,22 +375,32 @@ for:
386375
dart pub publish --force || exit 1
387376
cd $APPVEYOR_BUILD_FOLDER
388377
378+
sleep 60
379+
389380
cd src/serious_python_android
390381
dart pub publish --force || exit 1
391382
cd $APPVEYOR_BUILD_FOLDER
392383
384+
sleep 60
385+
393386
cd src/serious_python_darwin
394387
dart pub publish --force || exit 1
395388
cd $APPVEYOR_BUILD_FOLDER
396389
390+
sleep 60
391+
397392
cd src/serious_python_windows
398393
dart pub publish --force || exit 1
399394
cd $APPVEYOR_BUILD_FOLDER
400395
396+
sleep 60
397+
401398
cd src/serious_python_linux
402399
dart pub publish --force || exit 1
403400
cd $APPVEYOR_BUILD_FOLDER
404401
402+
sleep 60
403+
405404
cd src/serious_python
406405
dart pub publish --force || exit 1
407406
cd $APPVEYOR_BUILD_FOLDER

src/serious_python/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.7.1
2+
3+
* Added `namespace` definition to Android Gradle build.
4+
* Bump dependencies.
5+
16
## 0.7.0
27

38
* `runPython()` method to support running Python script.

0 commit comments

Comments
 (0)