65
65
go-
66
66
- run : go test -v -race ./...
67
67
68
- <<<<<<< HEAD
69
- =======
70
- test-integration-server-internal :
71
- runs-on : ubuntu-latest
72
- steps :
73
- - uses : actions/checkout@v4
74
- - uses : actions/setup-go@v5
75
- with :
76
- go-version-file : integrationservertest/go.mod
77
- cache : false
78
- - uses : actions/cache@v4
79
- with :
80
- path : |
81
- ~/go/pkg/mod/cache
82
- key : integrationservertest-go-${{ hashFiles('integrationservertest/go.mod') }}
83
- restore-keys : |
84
- integration-server-test-go-
85
- - env :
86
- KIBANA_URL : " https://kibana.test"
87
- KIBANA_USERNAME : " dummy"
88
- KIBANA_PASSWORD : " dummy"
89
- EC_URL : " https://elastic-cloud.test"
90
- EC_API_KEY : " dummy"
91
- EC_REGION : " gcp-us-west2"
92
- # run integrationservertest/internal tests
93
- # integrationservertest themselves are run in the integration-server-test pipeline
94
- run : cd ./integrationservertest && go test -v -race ./internal/...
95
-
96
- test-fips :
97
- runs-on : ubuntu-latest
98
- steps :
99
- - uses : actions/checkout@v4
100
- - uses : actions/setup-go@v5
101
- with :
102
- go-version-file : go.mod
103
- cache : false
104
- - uses : actions/cache@v4
105
- with :
106
- path : |
107
- ~/go/pkg/mod/cache
108
- key : go-${{ hashFiles('go.mod') }}
109
- restore-keys : |
110
- go-
111
- - env :
112
- GOFIPS140 : " latest"
113
- GODEBUG : " fips140=only"
114
- run : go test -v -race -tags=requirefips ./...
115
-
116
- >>>>>>> 0e1f32a6 (ci: revert image pinning for internal and github actions (#17191))
117
68
system-test :
118
69
runs-on : ubuntu-latest
119
70
steps :
@@ -135,32 +86,6 @@ jobs:
135
86
GH_TOKEN : ${{ github.token }}
136
87
run : make system-test
137
88
138
- <<<<<<< HEAD
139
- =======
140
- system-test-fips :
141
- runs-on : ubuntu-latest
142
- steps :
143
- - uses : actions/checkout@v4
144
- - uses : actions/setup-go@v5
145
- with :
146
- go-version-file : systemtest/go.mod
147
- cache : false
148
- - run : docker compose up -d
149
- - uses : actions/cache@v4
150
- with :
151
- path : |
152
- ~/go/pkg/mod/cache
153
- key : systemtest-go-${{ hashFiles('systemtest/go.mod', 'go.mod') }}
154
- restore-keys : |
155
- systemtest-go-
156
- - env :
157
- GOTESTFLAGS : " -v -tags=requirefips"
158
- GOFIPS140 : " latest"
159
- GODEBUG : " fips140=only"
160
- GH_TOKEN : ${{ github.token }}
161
- run : make system-test
162
-
163
- >>>>>>> 0e1f32a6 (ci: revert image pinning for internal and github actions (#17191))
164
89
test-package :
165
90
runs-on : ubuntu-latest
166
91
steps :
0 commit comments