Skip to content

Commit

Permalink
remove FVM (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
riscait authored Oct 14, 2023
1 parent f2e7211 commit e00f5c4
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 52 deletions.
4 changes: 0 additions & 4 deletions .fvm/fvm_config.json

This file was deleted.

20 changes: 0 additions & 20 deletions .github/actions/setup_flutter/action.yml

This file was deleted.

21 changes: 8 additions & 13 deletions .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
- '**/analysis_options.yaml'
- '**/melos.yaml'
- '**/pubspec.yaml'
- 'fvm_config.json'
analyze:
needs: check
Expand All @@ -47,12 +46,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Flutter
id: setup-flutter
uses: ./.github/actions/setup_flutter

- name: Prepare Melos
run: echo "MELOS_SDK_PATH=${{ steps.setup-flutter.outputs.flutter-path }}" >> "$GITHUB_ENV"
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true

- name: Install Melos
uses: bluefireteam/melos-action@v2
Expand All @@ -71,12 +68,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Flutter
id: setup-flutter
uses: ./.github/actions/setup_flutter

- name: Prepare Melos
run: echo "MELOS_SDK_PATH=${{ steps.setup-flutter.outputs.flutter-path }}" >> "$GITHUB_ENV"
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true

- name: Install Melos
uses: bluefireteam/melos-action@v2
Expand Down
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -141,9 +141,6 @@ coverage/
# Fastlane related
**/fastlane/report.xml

# FVM related
**/.fvm/flutter_sdk

# Bundler related
**/vendor/bundle

Expand Down
10 changes: 0 additions & 10 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"*.gen.dart",
"*.lock",
"*.xcconfig",
"**/fvm",
"**/.pub-cache",
".git/objects",
".vscode",
Expand Down Expand Up @@ -90,10 +89,6 @@
},
// Regenerate the Localization file every time an arb file is saved.
"dart.flutterGenerateLocalizationsOnSave": "all",
// Specify the path to the Flutter SDK you are using.
"dart.flutterSdkPath": ".fvm/flutter_sdk",
// Specify the path to the Dart SDK you are using.
"dart.sdkPath": ".fvm/flutter_sdk/bin/cache/dart-sdk",
// Mark external packages as debuggable and enable stepping into them during debugging if `true`.
"dart.debugExternalPackageLibraries": false,
// Mark Dart SDK libraries as debuggable and enable stepping into them during debugging if `true`.
Expand All @@ -119,18 +114,13 @@
"readme.*": "authors, backers.md, changelog*, citation*, code_of_conduct.md, codeowners, contributing.md, contributors, copying, credits, governance.md, history.md, license*, maintainers, readme*, security.md, sponsors.md",
"*.dart": "$(capture).g.dart, $(capture).freezed.dart, $(capture).mocks.dart"
},
// Exclude specified files from monitoring.
"files.watcherExclude": {
"**/.fvm": true
},
// Fetch commits automatically from the default remote of the current Git repository if `true`.
// When set to `all`, fetch from all remotes.
"git.autofetch": true,
// Commit all changes when there are no staged changes if `true`.
"git.enableSmartCommit": true,
// Exclude generated files from the search targets.
"search.exclude": {
"**/.fvm": true,
"**/*.freezed.dart": true,
"**/*.g.dart": true
}
Expand Down
3 changes: 1 addition & 2 deletions melos.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: flutterfire_adapter
repository: https://github.com/altive/flutterfire_adapter
sdkPath: .fvm/flutter_sdk

packages:
- packages/*
Expand Down Expand Up @@ -72,4 +71,4 @@ scripts:
flutter test --coverage
description: Run flutter test for CI.
packageFilters:
dirExists: test
dirExists: test

0 comments on commit e00f5c4

Please sign in to comment.