Skip to content

Commit

Permalink
Add workflow scripts (#266)
Browse files Browse the repository at this point in the history
  • Loading branch information
vitusortner authored Feb 21, 2020
1 parent b64e89f commit 0acf397
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tool/generate_test_database.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

cd ../floor
flutter packages pub run build_runner build
14 changes: 14 additions & 0 deletions tool/get.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

cd ..

cd floor
flutter packages pub get
cd ..

cd floor_annotation
pub get
cd ..

cd floor_generator
pub get
14 changes: 14 additions & 0 deletions tool/upgrade.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

cd ..

cd floor
flutter packages pub upgrade
cd ..

cd floor_annotation
pub upgrade
cd ..

cd floor_generator
pub upgrade

0 comments on commit 0acf397

Please sign in to comment.