Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Ellet committed Dec 8, 2023
1 parent 59d436d commit 409360a
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 20 deletions.
66 changes: 58 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
name: Build the example
name: Build the app

on:
push:
paths:
- 'pubspec.yaml'
pull_request:
branches: [master, dev]
branches: [main, dev]

jobs:
tests:
build_linux:
name: Build Linux and Web Apps
runs-on: ubuntu-latest

steps:
Expand All @@ -17,20 +21,66 @@ jobs:

- name: Check flutter version
run: flutter --version

- name: Enable Local Dev
run: ./scripts/enable_local_dev.sh

- name: Fallbacks
run: ./scripts/fallbacks.sh

- name: Install dependencies
run: flutter pub get

- name: Flutter build Web
run: flutter build web --release --verbose --dart-define=CI=true
working-directory: ./example

- name: Install flutter Linux prerequisites
run: sudo apt-get install clang cmake git ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev -y

- name: Flutter build Linux
run: flutter build linux --release --verbose --dart-define=CI=true
working-directory: ./example

build_windows:
name: Build Windows App
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true

- name: Check flutter version
run: flutter --version

- name: Fallbacks
run: ./scripts/fallbacks.sh

- name: Install dependencies
run: flutter pub get

- name: Flutter build windows
run: flutter build windows --release --verbose --dart-define=CI=true

build_macOS:
name: Build macOS App
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true

- name: Check flutter version
run: flutter --version

- name: Fallbacks
run: ./scripts/fallbacks.sh

- name: Install dependencies
run: flutter pub get

- name: Flutter build macOS
run: flutter build macos --release --verbose --dart-define=CI=true
- name: Flutter build iOS
run: flutter build ios --release --verbose --dart-define=CI=true
11 changes: 0 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,3 @@ jobs:

- name: Run flutter tests
run: flutter test

# - name: Flutter build Web
# run: flutter build web --release --verbose --dart-define=CI=true
# working-directory: ./example

# - name: Install flutter Linux prerequisites
# run: sudo apt-get install clang cmake git ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev -y

# - name: Flutter build Linux
# run: flutter build linux --release --verbose --dart-define=CI=true
# working-directory: ./example
2 changes: 1 addition & 1 deletion version.dart
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const version = '9.0.0-dev-10';
const version = '9.0.0-dev.10';

0 comments on commit 409360a

Please sign in to comment.