-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: LingKa <[email protected]>
- Loading branch information
Showing
1 changed file
with
20 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
name: Generate API | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Install gRPC & gRPC tools | ||
run: python3 -m pip install grpcio grpcio-tools | ||
shell: bash | ||
using: "composite" | ||
steps: | ||
- name: Install gRPC & gRPC tools | ||
run: python3 -m pip install grpcio grpcio-tools | ||
shell: bash | ||
|
||
- name: Initialize Git Submodules | ||
run: git submodule init | ||
shell: bash | ||
- name: Update Git Submodules | ||
run: git submodule update | ||
shell: bash | ||
- name: Initialize Git Submodules | ||
run: | | ||
cd py-xline | ||
git submodule init | ||
shell: bash | ||
- name: Update Git Submodules | ||
run: | | ||
cd py-xline | ||
git submodule update | ||
shell: bash | ||
|
||
- name: Generate api | ||
run: make | ||
shell: bash | ||
- name: Generate api | ||
run: | | ||
cd py-xline | ||
make | ||
shell: bash |