Skip to content

Commit 1dd01fb

Browse files
Simplify ci.yaml
1 parent 9ddb763 commit 1dd01fb

File tree

1 file changed

+2
-19
lines changed

1 file changed

+2
-19
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,6 @@ jobs:
2929
bazel-build-test:
3030
runs-on: ubuntu-latest
3131

32-
env:
33-
DOCKER_HOST: "tcp://localhost:2375"
34-
35-
services:
36-
docker:
37-
image: docker:29.0.0-dind
38-
env:
39-
DOCKER_TLS_CERTDIR: ""
40-
DOCKER_DRIVER: overlay2
41-
options: --privileged
42-
ports:
43-
- 2375:2375
44-
4532
steps:
4633
- name: Checkout
4734
uses: actions/checkout@v4
@@ -69,9 +56,5 @@ jobs:
6956
7057
- name: Bazel Test
7158
run: |
72-
bazel test \
73-
--test_env=DOCKER_HOST=tcp://localhost:2375 \
74-
--test_output=errors \
75-
-- \
76-
//... \
77-
-//ui/...
59+
# Test everything except the UI
60+
bazel test --test_output=errors -- //... -//ui/...

0 commit comments

Comments
 (0)