Skip to content

Commit

Permalink
Fix path to update_bindings.dart in mono_repo.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
srujzs committed Aug 23, 2024
1 parent 193530e commit 55ae417
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ jobs:
- job_008
- job_009
job_011:
name: "generate_and_analyze; Dart dev; PKG: web_generator; `dart update_bindings.dart`"
name: "generate_and_analyze; Dart dev; PKG: web_generator; `dart bin/update_bindings.dart`"
runs-on: ubuntu-latest
steps:
- name: Cache Pub hosted dependencies
Expand All @@ -405,8 +405,8 @@ jobs:
run: dart pub upgrade
if: "always() && steps.checkout.conclusion == 'success'"
working-directory: web_generator
- name: web_generator; dart update_bindings.dart
run: dart update_bindings.dart
- name: web_generator; dart bin/update_bindings.dart
run: dart bin/update_bindings.dart
if: "always() && steps.web_generator_pub_upgrade.conclusion == 'success'"
working-directory: web_generator
needs:
Expand Down
4 changes: 2 additions & 2 deletions tool/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ for PKG in ${PKGS}; do
dart fix --compare-to-golden test_fixes || EXIT_CODE=$?
;;
command_1)
echo 'dart update_bindings.dart'
dart update_bindings.dart || EXIT_CODE=$?
echo 'dart bin/update_bindings.dart'
dart bin/update_bindings.dart || EXIT_CODE=$?
;;
format)
echo 'dart format --output=none --set-exit-if-changed .'
Expand Down
2 changes: 1 addition & 1 deletion web_generator/mono_pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ stages:
- test: --test-randomize-ordering-seed=random -p chrome
- test: --test-randomize-ordering-seed=random -p chrome -c dart2wasm
- generate_and_analyze:
- command: dart update_bindings.dart
- command: dart bin/update_bindings.dart
- analyze: --fatal-infos .

0 comments on commit 55ae417

Please sign in to comment.