We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ddb763 commit 1dd01fbCopy full SHA for 1dd01fb
.github/workflows/ci.yaml
@@ -29,19 +29,6 @@ jobs:
29
bazel-build-test:
30
runs-on: ubuntu-latest
31
32
- env:
33
- DOCKER_HOST: "tcp://localhost:2375"
34
-
35
- services:
36
- docker:
37
- image: docker:29.0.0-dind
38
39
- DOCKER_TLS_CERTDIR: ""
40
- DOCKER_DRIVER: overlay2
41
- options: --privileged
42
- ports:
43
- - 2375:2375
44
45
steps:
46
- name: Checkout
47
uses: actions/checkout@v4
@@ -69,9 +56,5 @@ jobs:
69
56
70
57
- name: Bazel Test
71
58
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