File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 31
31
env :
32
32
TEST_AZURE_ACCOUNT_NAME : ${{ secrets.TEST_AZURE_ACCOUNT_NAME }}
33
33
TEST_AZURE_ACCOUNT_KEY : ${{ secrets.TEST_AZURE_ACCOUNT_KEY }}
34
- run : make test
34
+ run : |
35
+ export KUBEBUILDER_CONTROLPLANE_STOP_TIMEOUT=45s && make test
35
36
36
37
test-linux-arm64 :
37
38
# Hosted on Equinix
56
57
# We should reenable go test -race for arm64 runners once the
57
58
# current issue is resolved.
58
59
GO_TEST_ARGS : ' '
59
- run : make test
60
+ run : |
61
+ export KUBEBUILDER_CONTROLPLANE_STOP_TIMEOUT=45s && make test
60
62
61
63
# Runs 'make test' on MacOS to ensure the continuous support for contributors
62
64
# using it as a development environment.
80
82
restore-keys : |
81
83
${{ runner.os }}-go-
82
84
- name : Run tests
83
- run : make test
85
+ run : |
86
+ export KUBEBUILDER_CONTROLPLANE_STOP_TIMEOUT=45s && make test
You can’t perform that action at this time.
0 commit comments