Skip to content

Commit e7c6368

Browse files
authoredFeb 17, 2021
CLOUDP-82159: Upgrade to operator-sdk v1.4.0 (#327)
* Import-only changes * Non-trivial code changes * Build, github, and evergreen changes * CRD changes * Address PR comments * Address PR comments II * Address PR comments III
1 parent e665f7e commit e7c6368

File tree

92 files changed

+913
-506
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+913
-506
lines changed
 

‎.evergreen.yml

-11
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,6 @@ functions:
1919
params:
2020
directory: mongodb-kubernetes-operator
2121

22-
setup_operator_sdk:
23-
- command: subprocess.exec
24-
type: setup
25-
params:
26-
working_dir: mongodb-kubernetes-operator/scripts/ci
27-
command: go run download.go
28-
env:
29-
URL: https://github.com/operator-framework/operator-sdk/releases/download/v0.19.4/operator-sdk-v0.19.4-s390x-linux-gnu
30-
FILENAME: operator-sdk
31-
DIR: ${workdir}/bin
32-
3322
# upload_e2e_logs has the responsibility of dumping as much information as
3423
# possible into the S3 bucket
3524
upload_e2e_logs:

‎.github/workflows/go.yml

+9
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,15 @@ jobs:
1616
with:
1717
go-version: 1.14
1818

19+
- name: Test api
20+
run: go test -v ./api/...
21+
22+
- name: Test cmd
23+
run: go test -v ./cmd/...
24+
25+
- name: Test controllers
26+
run: go test -v ./controllers/...
27+
1928
- name: Test pkg
2029
run: go test -v ./pkg/...
2130

0 commit comments

Comments
 (0)
Please sign in to comment.