Skip to content

Commit

Permalink
Separate into steps
Browse files Browse the repository at this point in the history
  • Loading branch information
smokestacklightnin committed Oct 23, 2024
1 parent e86e4d8 commit f2ffccf
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci-test-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,17 @@ jobs:
# Share repository cache between workflows.
repository-cache: true

- name: Run unit tests
- name: Build unit tests
shell: bash
run: |
bazel build //tensorflow_serving/...
- name: Clean unit test artifacts
shell: bash
run: |
bazel clean --expunge
- name: Run unit tests
shell: bash
run: |
bazel test //tensorflow_serving/... --test_output=errors

0 comments on commit f2ffccf

Please sign in to comment.