Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/build-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
cache: true
channel: stable
flutter-version: 3.41.0
flutter-version: 3.44.0

- name: Install dependencies & Activate as global executable
run: |
Expand All @@ -51,7 +51,7 @@ jobs:
- name: Run flutterpi_tool build
working-directory: test_app
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_TOKEN: ${{ github.token }}
run: |
echo '::group::flutterpi_tool build ... --debug-unoptimized'
flutterpi_tool build --arch=${{ matrix.arch }} --cpu=${{ matrix.cpu }} --debug-unoptimized --debug-symbols --verbose
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/flutter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GITHUB_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v4

- uses: subosito/flutter-action@v2
with:
cache: true
channel: stable
flutter-version: 3.41.0
flutter-version: 3.44.0

- name: Install dependencies
run: flutter pub get
Expand Down
3 changes: 2 additions & 1 deletion lib/src/build_system/build_app.dart
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,8 @@ class AppBuilder {
FlutterpiTargetPlatform.genericRiscv64 => 'riscv64',
FlutterpiTargetPlatform.genericAArch64 ||
FlutterpiTargetPlatform.pi3_64 ||
FlutterpiTargetPlatform.pi4_64 =>
FlutterpiTargetPlatform.pi4_64 ||
FlutterpiTargetPlatform.pi5_64 =>
'arm64',
FlutterpiTargetPlatform.genericArmV7 ||
FlutterpiTargetPlatform.pi3 ||
Expand Down
2 changes: 1 addition & 1 deletion lib/src/more_os_utils.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class MoreOperatingSystemUtilsWrapper implements MoreOperatingSystemUtils {
HostPlatform.linux_arm64 => FlutterpiHostPlatform.linuxARM64,
HostPlatform.windows_x64 => FlutterpiHostPlatform.windowsX64,
HostPlatform.windows_arm64 => FlutterpiHostPlatform.windowsARM64,
_ => throw UnsupportedError('Unsupported host platform: $hostPlatform'),
HostPlatform.linux_riscv64 => FlutterpiHostPlatform.linuxRV64,
};
}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repository: https://github.com/ardera/flutterpi_tool

environment:
sdk: ^3.0.5
flutter: ">=3.41.0"
flutter: ">=3.44.0"

executables:
# TODO(ardera): Maybe add an alias `flutterpi-tool` here?
Expand Down
Loading