Skip to content

Commit

Permalink
MacOS CI matrix
Browse files Browse the repository at this point in the history
Signed-off-by: Joel Winarske <[email protected]>
  • Loading branch information
jwinarske committed Jan 30, 2025
1 parent 5734cc4 commit 39cce77
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ubuntu-workspace-automation
name: linux

on:
pull_request:
Expand All @@ -12,12 +12,11 @@ on:

jobs:

workspace-automation:
linux-workspace-automation:

strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-22.04-arm, ubuntu-24.04, ubuntu-24.04-arm]
# macos-10.15, macos-11, macos-12yes

runs-on: ${{ matrix.os }}

Expand Down
39 changes: 39 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: macos

on:
pull_request:
types: [ opened, synchronize, reopened, closed ]
release:
types: [ published, created, edited ]
workflow_dispatch:
schedule:
# daily
- cron: '0 0 * * *'

jobs:

macos-workspace-automation:

strategy:
matrix:
os: [ macos-13, macos-14, macos-15 ]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Update sudo credentials
run: sudo -v

- name: Create workspace
run: |
./flutter_workspace.py --enable=qemu-agl-master
- name: Test workspace
run: |
source ./setup_env.sh
flutter doctor -v
dart --version

0 comments on commit 39cce77

Please sign in to comment.