mirror of https://github.com/BOINC/boinc.git
70 lines
1.8 KiB
YAML
70 lines
1.8 KiB
YAML
name: Flutter-macOS
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
schedule:
|
|
- cron: '25 12 * * 0'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build:
|
|
name: ${{ matrix.type }}-flutter-build
|
|
runs-on: macos-latest
|
|
strategy:
|
|
matrix:
|
|
type: [macos, ios]
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 2
|
|
|
|
- name: Setup xcode
|
|
uses: maxim-lobanov/setup-xcode@v1
|
|
with:
|
|
xcode-version: '12.5.1'
|
|
|
|
- name: Setup flutter
|
|
uses: subosito/flutter-action@v1
|
|
with:
|
|
channel: 'beta'
|
|
|
|
- name: Setup macos desktop
|
|
if: matrix.type == 'macos'
|
|
run: flutter config --enable-macos-desktop
|
|
|
|
- name: Cache dependencies
|
|
uses: actions/cache@v3
|
|
if: matrix.type == 'macos'
|
|
with:
|
|
path: 3rdParty/buildCache
|
|
key: osx-flutter-${{ hashFiles('3rdParty/*Mac*.sh', 'mac_build/setupForBOINC.sh', 'mac_build/dependencyNames.sh', 'mac_build/[bB]uild*.sh', '.github/workflows/flutter-macos.yml') }}
|
|
|
|
- name: Build macos client
|
|
if: matrix.type == 'macos'
|
|
run: samples/flutter/ci_build_macos.sh
|
|
|
|
- name: Install flutter dependencies
|
|
run: cd samples/flutter/boinc/ && flutter pub get
|
|
|
|
- name: Build macos
|
|
if: matrix.type == 'macos'
|
|
run: |
|
|
cd samples/flutter/
|
|
flutter create boinc
|
|
cd boinc/
|
|
flutter build macos
|
|
|
|
- name: Build ios
|
|
if: matrix.type == 'ios'
|
|
run: |
|
|
cd samples/flutter/
|
|
flutter create boinc
|
|
cd boinc/
|
|
flutter build ios --release --no-codesign
|