Move executor-kubernetes out of enterprise (#56449)

Another one to finally get rid of enterprise/cmd. This one's been mostly mechanical.
This commit is contained in:
Erik Seliger 2023-09-08 09:24:05 -05:00 committed by GitHub
parent e0a8ff3d89
commit d45e94743d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View File

@ -51,7 +51,7 @@ Batch Changes, you will also need to build the `batcheshelper` image.
Run the following command to build the executor image.
```bash
# Build the image in enterprise/cmd/executor-kubernetes
# Build the image in cmd/executor-kubernetes
IMAGE=executor-kubernetes ../../executor-kubernetes/build.sh
```

View File

@ -541,11 +541,11 @@ commands:
done
install: |
if [[ $(uname) == "Linux" ]]; then
bazel build //enterprise/cmd/executor-kubernetes:image_tarball
docker load --input $(bazel cquery //enterprise/cmd/executor-kubernetes:image_tarball --output=files)
bazel build //cmd/executor-kubernetes:image_tarball
docker load --input $(bazel cquery //cmd/executor-kubernetes:image_tarball --output=files)
else
bazel build //enterprise/cmd/executor-kubernetes:image_tarball --config darwin-docker
docker load --input $(bazel cquery //enterprise/cmd/executor-kubernetes:image_tarball --config darwin-docker --output=files)
bazel build //cmd/executor-kubernetes:image_tarball --config darwin-docker
docker load --input $(bazel cquery //cmd/executor-kubernetes:image_tarball --config darwin-docker --output=files)
fi
env: