Skip to content

Commit 0b736ad

Browse files
committed
Experimental with ubuntu-24.04-arm test workflow
1 parent deecec7 commit 0b736ad

File tree

3 files changed

+45
-2
lines changed

3 files changed

+45
-2
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: Flutter SDK for Linux (Intel)
2+
3+
on:
4+
push:
5+
branches: [main, v*]
6+
pull_request:
7+
branches: [main, v*]
8+
schedule:
9+
# https://crontab.guru/#40_10_*_*_*
10+
- cron: '40 10 * * *'
11+
workflow_dispatch:
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
stable:
19+
uses: ./.github/workflows/flutter.yml
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
version:
24+
- latest
25+
- 3.27.0
26+
with:
27+
runs-on: ubuntu-latest
28+
channel: stable
29+
version: ${{ matrix.version }}
30+
31+
beta:
32+
uses: ./.github/workflows/flutter.yml
33+
strategy:
34+
fail-fast: false
35+
matrix:
36+
version:
37+
- latest
38+
- 3.27.0-0.1.pre
39+
with:
40+
runs-on: ubuntu-latest
41+
channel: beta
42+
version: ${{ matrix.version }}

.github/workflows/flutter-linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- latest
2525
- 3.27.0
2626
with:
27-
runs-on: ubuntu-latest
27+
runs-on: ubuntu-24.04-arm
2828
channel: stable
2929
version: ${{ matrix.version }}
3030

@@ -37,6 +37,6 @@ jobs:
3737
- latest
3838
- 3.27.0-0.1.pre
3939
with:
40-
runs-on: ubuntu-latest
40+
runs-on: ubuntu-24.04-arm
4141
channel: beta
4242
version: ${{ matrix.version }}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ This [GitHub Action] installs and sets up of a Flutter SDK for use in actions by
99

1010
[![Flutter SDK for Windows](https://github.com/flutter-actions/setup-flutter/actions/workflows/flutter-windows.yml/badge.svg)](https://github.com/flutter-actions/setup-flutter/actions/workflows/flutter-windows.yml)
1111
[![Flutter SDK for Linux](https://github.com/flutter-actions/setup-flutter/actions/workflows/flutter-linux.yml/badge.svg)](https://github.com/flutter-actions/setup-flutter/actions/workflows/flutter-linux.yml)
12+
[![Flutter SDK for Linux (Intel)](https://github.com/flutter-actions/setup-flutter/actions/workflows/flutter-linux-intel.yml/badge.svg)](https://github.com/flutter-actions/setup-flutter/actions/workflows/flutter-linux-intel.yml)
1213
[![Flutter SDK for macOS](https://github.com/flutter-actions/setup-flutter/actions/workflows/flutter-macos.yml/badge.svg)](https://github.com/flutter-actions/setup-flutter/actions/workflows/flutter-macos.yml)
1314
[![Flutter SDK for macOS (Intel)](https://github.com/flutter-actions/setup-flutter/actions/workflows/flutter-macos-intel.yml/badge.svg)](https://github.com/flutter-actions/setup-flutter/actions/workflows/flutter-macos-intel.yml)
1415

0 commit comments

Comments
 (0)