You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/go.yml
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -114,7 +114,23 @@ jobs:
114
114
with:
115
115
go-version-file: go.work
116
116
id: go
117
-
- name: Test all modules
118
-
run: make test-unit-non-plugin
117
+
## Windows has significant differences from POSIX-compliant OS.
118
+
## so it only runs tests for the modules that are released.
119
+
- name: Test kyaml
120
+
run: make test
121
+
working-directory: ./kyaml
122
+
- name: Test cmd/config
123
+
run: make test
124
+
working-directory: ./cmd/config
125
+
env:
126
+
KUSTOMIZE_DOCKER_E2E: false # docker on windows not working well yet
127
+
- name: Test api
128
+
run: make test
129
+
working-directory: ./api
130
+
env:
131
+
KUSTOMIZE_DOCKER_E2E: false # docker on windows not working well yet
132
+
- name: Test kustomize
133
+
run: go test -cover ./... -ldflags "-X sigs.k8s.io/kustomize/api/provenance.buildDate=2023-01-31T23:38:41Z -X sigs.k8s.io/kustomize/api/provenance.version=(test)"
134
+
working-directory: ./kustomize
119
135
env:
120
136
KUSTOMIZE_DOCKER_E2E: false # docker on windows not working well yet
0 commit comments