Skip to content

Commit

Permalink
add submodule update to the commands
Browse files Browse the repository at this point in the history
  • Loading branch information
3vilhamster committed Jul 16, 2024
1 parent 238b1e0 commit bf3a367
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ steps:
- <<: *commandContainer
command:
- |-
git submodule update --init
make unit_test
.buildkite/scripts/gen_coverage_metadata.sh .build/metadata.txt
- docker-compose#v3.0.0:
Expand All @@ -72,6 +73,7 @@ steps:
- <<: *commandContainer
command:
- |-
git submodule update --init
./scripts/golint.sh
- docker-compose#v3.0.0:
run: unit-test
Expand All @@ -92,6 +94,7 @@ steps:
- <<: *commandContainer
command:
- |-
git submodule update --init
make integ_test_sticky_off
- docker-compose#v3.0.0:
run: integ-test
Expand All @@ -112,6 +115,7 @@ steps:
- <<: *commandContainer
command:
- |-
git submodule update --init
make integ_test_sticky_on
- docker-compose#v3.0.0:
run: integ-test
Expand All @@ -132,6 +136,7 @@ steps:
- <<: *commandContainer
command:
- |-
git submodule update --init
make integ_test_grpc
- docker-compose#v3.0.0:
run: integ-test-grpc
Expand Down
1 change: 1 addition & 0 deletions docker/buildkite/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ ADD go.mod go.sum /go/src/go.uber.org/cadence/

# allow git-status and similar to work
RUN git config --global --add safe.directory /go/src/go.uber.org/cadence
RUN git submodule update --init --recursive
RUN GO111MODULE=on go mod download

# Install Buildkite agent
Expand Down

0 comments on commit bf3a367

Please sign in to comment.