chore(scripts): migrate the scripts from sh to dart (#2036)

* chore(scripts): migrate the scripts from sh to dart, update GitHub PR template

* fix(ci): fix GitHub workflows failure by run 'flutter pub get' before running local development script
pull/2040/head
Ellet 9 months ago committed by GitHub
parent af7e4048ed
commit 28c59444bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      .github/PULL_REQUEST_TEMPLATE.md
  2. 59
      .github/workflows/build.yml
  3. 6
      .github/workflows/main.yml
  4. 6
      .github/workflows/publish.yml
  5. 7
      CONTRIBUTING.md
  6. 9
      scripts/README.md
  7. 49
      scripts/before_push.dart
  8. 43
      scripts/before_push.sh
  9. 24
      scripts/disable_local_dev.dart
  10. 24
      scripts/disable_local_dev.sh
  11. 28
      scripts/enable_local_dev.dart
  12. 24
      scripts/enable_local_dev.sh
  13. 7
      scripts/packages.dart
  14. 16
      scripts/pub_get.dart
  15. 8
      scripts/pub_get.sh
  16. 11
      scripts/update_package_version.dart

@ -4,6 +4,10 @@ Thank you for contributing.
Provide a description of your changes below and a general summary in the title.
Consider reading the Contributor Guide: https://github.com/singerdmx/flutter-quill/blob/master/CONTRIBUTING.md.
The changes of `CHANGELOG.md` and package version in `pubspec.yaml` are automated.
-->
## Description
@ -36,8 +40,9 @@ Put an x in all the boxes that apply:
- [ ] 🛠 **Bug fix:** Resolves an issue without altering current behavior.
- [ ] 🧹 **Code refactor:** Code restructuring that does not affect behavior.
- [ ] ❌ **Breaking change:** Alters existing functionality and requires updates.
- [ ] 🧪 **Tests:** Adds new tests or modifies existing tests.
- [ ] 📝 **Documentation:** Updates or additions to documentation.
- [ ] 🗑 **Chore:** Routine tasks, tests, or maintenance.
- [ ] 🗑 **Chore:** Routine tasks, or maintenance.
- [ ] ✅ **Build configuration change:** Changes to build or deploy processes.
## Suggestions

@ -24,12 +24,12 @@ jobs:
- name: 🔍 Verify Flutter installation
run: flutter --version
- name: 🚧 Enable local development environment (use the local packages)
run: ./scripts/enable_local_dev.sh
- name: 📥 Install Flutter dependencies
run: flutter pub get
- name: 🚧 Enable local development environment (use the local packages)
run: dart ./scripts/enable_local_dev.dart
- name: 🌐 Build Flutter Web Application
run: flutter build web --release --verbose --dart-define=CI=true
working-directory: ./example
@ -47,56 +47,3 @@ jobs:
- name: 🐧 Build Flutter Linux Desktop Application
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
# # Sh scripts is not supported on windows
# - name: Enable Local Dev
# run: ./scripts/enable_local_dev.sh
# - name: Install dependencies
# run: flutter pub get
# - name: Flutter build windows
# run: flutter build windows --release --verbose --dart-define=CI=true
# working-directory: ./example
# 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: Enable Local Dev
# run: ./scripts/enable_local_dev.sh
# - name: Install dependencies
# run: flutter pub get
# - name: Flutter build macOS
# run: flutter build macos --release --verbose --dart-define=CI=true
# working-directory: ./example
# - name: Flutter build iOS
# run: flutter build ios --release --verbose --dart-define=CI=true
# working-directory: ./example

@ -24,12 +24,12 @@ jobs:
- name: 🔍 Verify Flutter installation
run: flutter --version
- name: 🚧 Enable local development environment (use the local packages)
run: ./scripts/enable_local_dev.sh
- name: 📥 Install Flutter dependencies
run: flutter pub get
- name: 🚧 Enable local development environment (use the local packages)
run: dart ./scripts/enable_local_dev.dart
- name: 📦 Install dart_quill_delta dependencies
run: flutter pub get -C dart_quill_delta

@ -37,12 +37,12 @@ jobs:
- name: 🔍 Verify Flutter installation
run: flutter --version
- name: 🚧 Enable local development environment (use the local packages)
run: ./scripts/enable_local_dev.sh
- name: 📥 Install Flutter dependencies
run: flutter pub get
- name: 🚧 Enable local development environment (use the local packages)
run: dart ./scripts/enable_local_dev.dart
# This is needed in order for the authentication to success
# dart pub token add https://pub.dev --env-var PUB_TOKEN

@ -58,14 +58,13 @@ You will need a GitHub account as well as Git installed and configured with your
cp pubspec_overrides.yaml.disabled pubspec_overrides.yaml
```
or save some time with the following script:
<!-- TODO: We should update this script to dart instead -->
```
./scripts/enable_local_dev.sh
dart ./scripts/enable_local_dev.dart
```
8. Test them in the [example](./example) and add changes in there if necessary
9. Run the following script if possible
```
./scripts/before_push.sh
```shell
dart ./scripts/before_push.dart
```
10. When you are done sending your pull request, run:
```

@ -0,0 +1,9 @@
# Scripts
All the scripts must be run from the root project folder and not inside the scripts folder
**Example:**
```shell
dart ./scripts/pub_get.dart
```

@ -0,0 +1,49 @@
// ignore_for_file: avoid_print
import 'dart:io';
void main() async {
await runCommand('flutter', ['analyze']);
await runCommand('flutter', ['test']);
await runCommand('flutter', ['pub', 'publish', '--dry-run']);
await runCommand('dart', ['fix', '--apply']);
await runCommand('dart', ['format', '.']);
await runCommand('dart', ['format', '--set-exit-if-changed', '.']);
await runCommand(
'flutter',
[
'build',
'web',
'--release',
'--dart-define=CI=true',
],
workingDirectory: 'example',
);
print('');
await runCommand('dart', ['./scripts/ensure_translations_correct.dart']);
print('');
print('Checks completed.');
}
Future<void> runCommand(
String executable,
List<String> arguments, {
String? workingDirectory,
}) async {
print(
"Running '$executable ${arguments.join(' ')}' in directory '${workingDirectory ?? 'root'}'...");
final result = await Process.run(executable, arguments,
workingDirectory: workingDirectory);
print(result.stdout);
print(result.stderr);
}

@ -1,43 +0,0 @@
#!/bin/bash
# The script must be run from the root project folder and not inside the scripts
# TODO: Refactor this to a dart script to allow developers who use Windows to use it
# Run Flutter analyze
echo "Running 'flutter analyze'..."
flutter analyze
# Run Flutter test
echo "Running 'flutter test'..."
flutter test
# Check if package is ready for publishing
echo "Running 'flutter pub publish --dry-run'..."
flutter pub publish --dry-run
# Apply Dart fixes
echo "Running 'dart fix --apply'..."
dart fix --apply
# Format Dart code
echo "Running 'dart format .'"
dart format .
# Check dart code formatting
echo "Running 'dart format --set-exit-if-changed .'"
dart format --set-exit-if-changed .
# Check flutter web example
echo "Running flutter build web --release --dart-define=CI=true."
(cd example && flutter build web --release --dart-define=CI=true)
echo ""
# Check the translations
echo "Running dart ./scripts/ensure_translations_correct.dart"
(dart ./scripts/ensure_translations_correct.dart)
echo ""
echo "Script completed."

@ -0,0 +1,24 @@
// ignore_for_file: avoid_print
import 'dart:io' show File;
import 'package:path/path.dart' as path;
import './pub_get.dart' as pub_get show main;
import 'packages.dart' show repoPackages;
Future<void> main(List<String> args) async {
for (final package in repoPackages) {
await disable(packageDirectoryPath: package);
}
await pub_get.main([]);
print('Local development for all libraries has been disabled');
}
Future<void> disable({required String packageDirectoryPath}) async {
final pubspecOverridesFile =
File(path.join(packageDirectoryPath, 'pubspec_overrides.yaml'));
if (await pubspecOverridesFile.exists()) {
await pubspecOverridesFile.delete();
}
}

@ -1,24 +0,0 @@
#!/bin/bash
# Please make sure to run this script in the root directory of the repository and not inside sub-folders
# TODO: Refactor this to a dart script to allow developers who use Windows to use it
echo ""
echo "Disable local development for flutter_quill..."
rm pubspec_overrides.yaml
echo ""
echo "Enable local development for flutter_quill_extensions..."
rm flutter_quill_extensions/pubspec_overrides.yaml
echo ""
echo "Enable local development for flutter_quill_test..."
rm flutter_quill_test/pubspec_overrides.yaml
echo ""
echo "Local development for all libraries has been disabled, please 'flutter pub get' for each one of them"

@ -0,0 +1,28 @@
// ignore_for_file: avoid_print
import 'dart:io' show File;
import 'package:path/path.dart' as path;
import './pub_get.dart' as pub_get show main;
import 'packages.dart' show repoPackages;
Future<void> main(List<String> args) async {
for (final package in repoPackages) {
await enable(packageDirectoryPath: package);
}
await pub_get.main([]);
print('Local development for all libraries has been enabled');
}
Future<void> enable({required String packageDirectoryPath}) async {
final pubspecOverridesFile =
File(path.join(packageDirectoryPath, 'pubspec_overrides.yaml'));
final pubspecOverridesDisabledFile =
File(path.join(packageDirectoryPath, 'pubspec_overrides.yaml.disabled'));
if (!(await pubspecOverridesDisabledFile.exists())) {
print('$packageDirectoryPath does not support local development mode.');
return;
}
await pubspecOverridesDisabledFile.copy(pubspecOverridesFile.path);
}

@ -1,24 +0,0 @@
#!/bin/bash
# Please make sure to run this script in the root directory of the repository and not inside sub-folders
# TODO: Refactor this to a dart script to allow developers who use Windows to use it
echo ""
echo "Enable local development for flutter_quill..."
cp pubspec_overrides.yaml.disabled pubspec_overrides.yaml
echo ""
echo "Enable local development for flutter_quill_extensions..."
cp flutter_quill_extensions/pubspec_overrides.yaml.disabled flutter_quill_extensions/pubspec_overrides.yaml
echo ""
echo "Enable local development for flutter_quill_test..."
cp flutter_quill_test/pubspec_overrides.yaml.disabled flutter_quill_test/pubspec_overrides.yaml
echo ""
echo "Local development for all libraries has been enabled, please 'flutter pub get' for each one of them"

@ -0,0 +1,7 @@
/// The list of the packages in the repository.
const repoPackages = [
'./',
'./dart_quill_delta',
'./flutter_quill_extensions',
'./flutter_quill_test',
];

@ -0,0 +1,16 @@
// ignore_for_file: avoid_print
import 'dart:io' show Process;
import 'packages.dart' show repoPackages;
Future<void> main(List<String> args) async {
for (final package in repoPackages) {
await Process.run(
'flutter',
['pub', 'get'],
workingDirectory: package,
);
}
print('Got dependencies!');
}

@ -1,8 +0,0 @@
#!/usr/bin/env bash
# TODO: Refactor this to a dart script to allow developers who use Windows to use it
flutter pub get
(cd dart_quill_delta && flutter pub get)
(cd flutter_quill_extensions && flutter pub get)
(cd flutter_quill_test && flutter pub get)

@ -7,14 +7,11 @@ import 'dart:io' show File, exit;
import 'package:path/path.dart' as path;
import 'package:yaml_edit/yaml_edit.dart' show YamlEditor;
import 'packages.dart';
/// The list of the packages that which will be used to update the `CHANGELOG.md`
/// and the version in the `pubspec.yaml` for all the packages
final _packages = [
'./',
'./dart_quill_delta',
'./flutter_quill_extensions',
'./flutter_quill_test',
];
const _packagesToUpdate = repoPackages;
const _usage = 'Usage: ./script <version>';
const _versionContentFileName = 'versionContent.md';
@ -85,7 +82,7 @@ Future<void> main(List<String> args) async {
..write('$versionContent\n\n');
});
for (final packagePath in _packages) {
for (final packagePath in _packagesToUpdate) {
await _updatePubspecYamlFile(
pubspecYamlPath: '$packagePath/pubspec.yaml',
newVersion: passedVersion,

Loading…
Cancel
Save