Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
d431a5d
initial commit
ndonkoHenri Oct 15, 2025
9a149ac
updates
ndonkoHenri Oct 18, 2025
845c0a5
updates
ndonkoHenri Oct 18, 2025
3dba2b5
chore(ci): update CI configuration for concurrency and Flutter setup
ndonkoHenri Oct 18, 2025
454d0fa
updates
ndonkoHenri Oct 18, 2025
b23b327
updates
ndonkoHenri Oct 18, 2025
d843ddd
updates
ndonkoHenri Oct 18, 2025
dd26765
updates
ndonkoHenri Oct 18, 2025
1e96d83
updates
ndonkoHenri Oct 18, 2025
c83ccad
updates
ndonkoHenri Oct 18, 2025
325a258
updates
ndonkoHenri Oct 18, 2025
580782f
updates
ndonkoHenri Oct 18, 2025
b432981
updates
ndonkoHenri Oct 18, 2025
ac6f512
updates
ndonkoHenri Oct 18, 2025
87b4b2e
updates
ndonkoHenri Oct 18, 2025
6d373c0
updates
ndonkoHenri Oct 18, 2025
6e069cc
updates
ndonkoHenri Oct 18, 2025
7b24179
update
ndonkoHenri Oct 18, 2025
8cf22dc
update
ndonkoHenri Oct 19, 2025
439bdf4
Add ELF 16KB alignment check script and CMake flags
FeodorFitsner Oct 20, 2025
92e76d0
Bump version to 0.9.4
FeodorFitsner Oct 20, 2025
41c8c51
Increase minSdkVersion to 21 in build.gradle
FeodorFitsner Oct 20, 2025
9a7c8d2
Switch flet dependency to Git source
FeodorFitsner Oct 20, 2025
a730215
Merge branch 'android-16k' into github-action
FeodorFitsner Oct 20, 2025
b299db5
Remove --pre flag from serious_python packaging commands
FeodorFitsner Oct 20, 2025
5cc415f
Update iOS CI workflow to run integration tests
FeodorFitsner Oct 20, 2025
db11902
Update CI workflow: add uv setup and streamline steps
FeodorFitsner Oct 20, 2025
6292671
Remove flutter devices step from CI workflow
FeodorFitsner Oct 20, 2025
a00d42c
Remove --force flag from Dart publish step
FeodorFitsner Oct 20, 2025
f5194cc
Add caching for Android SDK in CI workflow
FeodorFitsner Oct 20, 2025
a609ebd
Remove Android SDK cache step from CI workflow
FeodorFitsner Oct 20, 2025
a5528c4
updates
ndonkoHenri Oct 21, 2025
74078d6
ci: enhance Linux build configuration with architecture-specific depe…
ndonkoHenri Oct 21, 2025
23192ba
ci: update macOS and iOS jobs to use latest runner and improve test c…
ndonkoHenri Oct 21, 2025
067a98f
ci: update version computation logic in CI workflow
ndonkoHenri Oct 21, 2025
b1d8ccf
ci: remove dry-run step from package publishing
ndonkoHenri Oct 21, 2025
cdb4690
ci: use environment variable for emulator port in CI workflow
ndonkoHenri Oct 21, 2025
ea09aa2
update CI configuration for versioning and patching
ndonkoHenri Oct 21, 2025
11f3ced
Trying to fix publish job
FeodorFitsner Oct 21, 2025
93bddbf
Replace dry-run publish with dart analyze in CI
FeodorFitsner Oct 21, 2025
09f9a0d
Run 'dart pub get' before analysis in CI
FeodorFitsner Oct 21, 2025
8010121
sleep on publish only
FeodorFitsner Oct 21, 2025
40938f4
Enable pub.dev steps only for version tags in CI
FeodorFitsner Oct 21, 2025
2580b35
Exclude gen.dart from analyzer checks
FeodorFitsner Oct 21, 2025
cb90c15
Enable tag-based publishing in CI workflow
FeodorFitsner Oct 21, 2025
6d63ebb
Enable CI jobs for all platforms
FeodorFitsner Oct 21, 2025
6e22048
Remove explicit shell specification from CI steps
FeodorFitsner Oct 21, 2025
367ef73
Remove commented concurrency config from CI workflow
FeodorFitsner Oct 21, 2025
24c13bf
Merge branch 'main' into github-action
FeodorFitsner Oct 21, 2025
d37378d
Remove download_artifact.py script
FeodorFitsner Oct 21, 2025
e0f7a5e
Add flutter pub get to CI test workflow
FeodorFitsner Oct 21, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
297 changes: 0 additions & 297 deletions .appveyor.yml

This file was deleted.

6 changes: 5 additions & 1 deletion ci/patch_pubspec.py → .github/scripts/patch_pubspec.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# /// script
# dependencies = ["pyyaml"]
# ///

import os
import pathlib
import sys
Expand All @@ -22,7 +26,7 @@
"serious_python_macos",
]

with open(pubspec_path, "r") as f:
with open(pubspec_path) as f:
data = yaml.safe_load(f)

# patch version
Expand Down
Loading
Loading