Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update submodule and improve tasks #29

Merged
merged 1 commit into from
May 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 19 additions & 25 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,32 +18,8 @@
},
{
"label": "git submodule init",
"dependsOn": [
"git submodule sync",
"git submodule update"
],
"problemMatcher": []
},
{
"label": "git submodule sync",
"type": "shell",
"command": "git",
"args": [
"submodule",
"sync",
"--recursive"
]
},
{
"label": "git submodule update",
"type": "shell",
"command": "git",
"args": [
"submodule",
"update",
"--init",
"--recursive"
]
"command": "tools/git_submodule_init.sh",
},
{
"label": "git submodule update",
Expand All @@ -57,6 +33,24 @@
"origin",
"master"
]
},
{
"label": "run authentication_service test",
"type": "shell",
"command": "pub run test",
"group": "test",
"options": {
"cwd": "${workspaceFolder}/services/authentication_service/"
}
},
{
"label": "run app test",
"type": "shell",
"group": "test",
"command": "flutter test",
"options": {
"cwd": "${workspaceFolder}/app",
}
}
]
}
2 changes: 1 addition & 1 deletion third_party/googleapis
Submodule googleapis updated 146 files
2 changes: 1 addition & 1 deletion third_party/protobuf
Submodule protobuf updated 46 files
+102 −0 BUILD
+1 −1 docs/performance.md
+13 −4 java/core/src/main/java/com/google/protobuf/Descriptors.java
+1 −1 java/core/src/main/java/com/google/protobuf/RopeByteString.java
+10 −2 java/lite.md
+0 −1 js/binary/decoder_test.js
+1 −1 protobuf.pc.in
+4 −1 python/google/protobuf/descriptor_pool.py
+13 −1 python/google/protobuf/internal/well_known_types.py
+1 −1 src/google/protobuf/any.pb.cc
+1 −1 src/google/protobuf/api.pb.cc
+2 −1 src/google/protobuf/compiler/cpp/cpp_file.cc
+1 −1 src/google/protobuf/compiler/cpp/cpp_message.cc
+3 −1 src/google/protobuf/compiler/java/java_message_lite.cc
+1 −1 src/google/protobuf/compiler/plugin.pb.cc
+297 −244 src/google/protobuf/descriptor.cc
+81 −62 src/google/protobuf/descriptor.h
+1 −1 src/google/protobuf/descriptor.pb.cc
+2 −0 src/google/protobuf/descriptor.proto
+353 −296 src/google/protobuf/descriptor_unittest.cc
+1 −1 src/google/protobuf/duration.pb.cc
+9 −10 src/google/protobuf/dynamic_message.cc
+1 −1 src/google/protobuf/empty.pb.cc
+1 −1 src/google/protobuf/field_mask.pb.cc
+335 −309 src/google/protobuf/generated_message_reflection.cc
+5 −401 src/google/protobuf/generated_message_reflection.h
+1 −1 src/google/protobuf/generated_message_table_driven_lite.h
+1 −1 src/google/protobuf/io/io_win32.cc
+0 −1 src/google/protobuf/map_entry.h
+1 −1 src/google/protobuf/map_field.h
+1 −79 src/google/protobuf/message.cc
+326 −268 src/google/protobuf/message.h
+4 −6 src/google/protobuf/message_unittest.inc
+33 −21 src/google/protobuf/repeated_field.h
+68 −2 src/google/protobuf/repeated_field_unittest.cc
+1 −1 src/google/protobuf/source_context.pb.cc
+1 −1 src/google/protobuf/struct.pb.cc
+47 −51 src/google/protobuf/text_format.cc
+2 −2 src/google/protobuf/text_format_unittest.cc
+1 −1 src/google/protobuf/timestamp.pb.cc
+1 −1 src/google/protobuf/type.pb.cc
+0 −4 src/google/protobuf/util/internal/json_stream_parser.h
+1 −1 src/google/protobuf/util/message_differencer.cc
+7 −0 src/google/protobuf/util/time_util.h
+1 −1 src/google/protobuf/wrappers.pb.cc
+1 −0 update_version.py
2 changes: 2 additions & 0 deletions tools/git_submodule_init.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
git submodule sync --recursive
git submodule update --init --recursive