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
5 changes: 5 additions & 0 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
self-hosted-runner:
# Blacksmith provides these labels through its GitHub App, so actionlint
# cannot discover them on its own.
labels:
- blacksmith-6vcpu-macos-latest
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,23 +71,29 @@ jobs:
matrix:
include:
- os: ubuntu-latest
runner: ubuntu-latest
target: web
- os: ubuntu-latest
runner: ubuntu-latest
target: linux
- os: ubuntu-latest
runner: ubuntu-latest
target: apk
- os: macos-latest
runner: blacksmith-6vcpu-macos-latest
Comment thread
spydon marked this conversation as resolved.
target: macos
- os: macos-latest
runner: blacksmith-6vcpu-macos-latest
target: ios
- os: windows-latest
runner: windows-latest
target: windows

defaults:
run:
working-directory: packages/supabase_flutter

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

env:
PUB_CACHE: ${{ github.workspace }}/.pub-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/example-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ jobs:
- { id: linux, os: ubuntu-latest, target: linux }
- { id: web, os: ubuntu-latest, target: web }
- { id: android, os: ubuntu-latest, target: android }
- { id: macos, os: macos-latest, target: macos }
- { id: ios, os: macos-latest, target: ios }
- { id: macos, os: blacksmith-6vcpu-macos-latest, target: macos }
- { id: ios, os: blacksmith-6vcpu-macos-latest, target: ios }
- { id: windows, os: windows-latest, target: windows }
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,12 +237,19 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
flutter-version: ['3.35.x', 'latest']
include:
- os: ubuntu-latest
runner: ubuntu-latest
- os: macos-latest
runner: blacksmith-6vcpu-macos-latest
- os: windows-latest
runner: windows-latest

defaults:
run:
working-directory: packages/supabase_flutter

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

steps:
- name: Checkout repository
Expand Down
Loading