Skip to content

Commit 4f878d7

Browse files
Add syntactic-code-intel-worker to pure-docker deployment scripts (#1267)
Amp-Thread-ID: https://ampcode.com/threads/T-29352f06-9697-493e-aeeb-8b96745fc156 <!-- description here --> ### Checklist <!-- Kubernetes and Docker Compose MUST be kept in sync. You should not merge a change here without a corresponding change in the other repository, unless it truly is specific to this repository. If uneeded, add link or explanation of why it is not needed here. --> * [ ] Sister [deploy-sourcegraph](https://github.com/sourcegraph/deploy-sourcegraph) change: * [ ] Sister [customer-replica](https://github.com/sourcegraph/deploy-sourcegraph-docker-customer-replica-1) change (if necessary, for any changes affecting pure-docker or configuration): * [ ] All images have a valid tag and SHA256 sum ### Test plan tests in CI <!-- As part of SOC2/GN-104 and SOC2/GN-105 requirements, all pull requests are REQUIRED to provide a "test plan". A test plan is a loose explanation of what you have done or implemented to test this, as outlined in our Testing principles and guidelines: https://docs.sourcegraph.com/dev/background-information/testing_principles Write your test plan here after the "Test plan" header. --> --------- Co-authored-by: Amp <[email protected]>
1 parent aab9cda commit 4f878d7

File tree

4 files changed

+3
-1
lines changed

4 files changed

+3
-1
lines changed

pure-docker/deploy-syntactic-code-intel-worker.sh

100644100755
File mode changed.

pure-docker/deploy.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ docker network create sourcegraph &>/dev/null || true
1515
for i in $(seq 0 $(($NUM_GITSERVER - 1))); do ./deploy-gitserver.sh $i; done
1616
./deploy-grafana.sh
1717
./deploy-precise-code-intel-worker.sh
18+
./deploy-syntactic-code-intel-worker.sh
1819
./deploy-pgsql.sh
1920
./deploy-codeintel-db.sh
2021
./deploy-codeinsights-db.sh

pure-docker/teardown.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ docker rm -f $(addresses "gitserver-" $NUM_GITSERVER "") &>/dev/null || true &
1515
docker rm -f grafana &>/dev/null || true
1616
docker rm -f jaeger &>/dev/null || true
1717
docker rm -f precise-code-intel-worker &>/dev/null || true
18+
docker rm -f syntactic-code-intel-worker &>/dev/null || true
1819
docker rm -f pgsql &>/dev/null || true &
1920
docker rm -f codeintel-db &>/dev/null || true &
2021
docker rm -f codeinsights-db &>/dev/null || true &

test/smoke-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ deploy_sourcegraph() {
1717
if [[ "$TEST_TYPE" == "pure-docker-test" ]]; then
1818
./test/volume-config.sh
1919
timeout 600s ./pure-docker/deploy.sh
20-
expect_containers="23"
20+
expect_containers="24"
2121
elif [[ "$TEST_TYPE" == "docker-compose-test" ]]; then
2222
docker-compose --file docker-compose/docker-compose.yaml up -d -t 600
2323
expect_containers="25"

0 commit comments

Comments
 (0)