Skip to content

Commit

Permalink
fix: tweak
Browse files Browse the repository at this point in the history
Signed-off-by: hlts2 <[email protected]>
  • Loading branch information
hlts2 committed Apr 22, 2024
1 parent 321c9cb commit 0c3084e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
12 changes: 11 additions & 1 deletion .github/actions/e2e-deploy/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ runs:
shell: bash
run: |
helm version
# NOTE: get tag infomation from actions inputs.
- name: Get image tag
shell: bash
id: get_image_tag
Expand Down Expand Up @@ -84,7 +85,7 @@ runs:
- name: Install dependencies
shell: bash
run: |
make ci/deps # NOTE: we may change to 'ci/deps/install'
make ci/deps/install # NOTE: we may change to 'ci/deps/install'
- name: Run tests
shell: bash
run: |
Expand All @@ -94,3 +95,12 @@ runs:
make ci/test # NOTE: we may change to 'ci/test/start'
kill $pid
# NOTE: debug step
- name: Debug git changes
shell: bash
run: |
git diff
- name: Delete downloaded dataset
shell: bash
run: |
rm -rf wordvecs1000.json
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ $(BINDIR)/buf:
-o "${BINDIR}/buf" && \
chmod +x "${BINDIR}/buf"

.PHONY: ci/deps
.PHONY: ci/deps/install
## install deps for CI environment
ci/deps:
ci/deps/install:
sudo apt-get update -y && sudo apt-get install -y \
python3-setuptools \
libprotobuf-dev \
Expand Down

0 comments on commit 0c3084e

Please sign in to comment.