:buildkite: Generating pipelineecho "--- :sheep: Cloning pipeline repository and starting script" && export ECOSYSTEM_QUEUE_SMALL="runner_queue_small_pr" && export ECOSYSTEM_QUEUE_MEDIUM="runner_queue_medium_pr" && export ECOSYSTEM_QUEUE_LARGE="runner_queue_pr" && export ECOSYSTEM_QUEUE_GPU="gpu_runner_queue_pr" && export PIPELINE_REPO_DIR=$(mktemp -d) && git clone https://github.com/ray-project/rayci "$PIPELINE_REPO_DIR" && pushd "$PIPELINE_REPO_DIR" || true && [ -n "$PIPELINE_REPO_BRANCH" ] && git fetch origin "$PIPELINE_REPO_BRANCH" && git checkout origin/"$PIPELINE_REPO_BRANCH" && popd || true && python3 -m pip install -Ur "$PIPELINE_REPO_DIR/ecosystem_ci/requirements.txt" && python3 "$PIPELINE_REPO_DIR/ecosystem_ci/build_pipeline.py" '.buildkite/*.yml' | buildkite-agent pipeline upload && rm -rf "$PIPELINE_REPO_DIR"
Waited 1m 41s
·
Ran in 14s
Test E2E (nightly operator)source .buildkite/setup-env.sh && kind create cluster --wait 900s --config ./tests/framework/config/kind-config-buildkite.yml && kubectl config set clusters.kind-kind.server https://docker:6443 && pushd ray-operator && IMG=kuberay/operator:nightly make docker-image && kind load docker-image kuberay/operator:nightly && IMG=kuberay/operator:nightly make deploy && kubectl wait --timeout=90s --for=condition=Available=true deployment kuberay-operator && echo "--- START:Running e2e rayservice (nightly operator) tests" && KUBERAY_TEST_TIMEOUT_SHORT=1m KUBERAY_TEST_TIMEOUT_MEDIUM=5m KUBERAY_TEST_TIMEOUT_LONG=10m go test -timeout 30m -v ./test/e2e | awk -f ../.buildkite/format.awk || (kubectl logs --tail -1 -l app.kubernetes.io/name=kuberay && exit 1) && echo "--- END:e2e rayservice (nightly operator) tests finished"
Waited 35s
·
Ran in 25m 30s
Test E2E rayservice (nightly operator)source .buildkite/setup-env.sh && kind create cluster --wait 900s --config ./tests/framework/config/kind-config-buildkite.yml && kubectl config set clusters.kind-kind.server https://docker:6443 && pushd ray-operator && IMG=kuberay/operator:nightly make docker-image && kind load docker-image kuberay/operator:nightly && IMG=kuberay/operator:nightly make deploy && kubectl wait --timeout=90s --for=condition=Available=true deployment kuberay-operator && echo "--- START:Running e2e rayservice (nightly operator) tests" && KUBERAY_TEST_TIMEOUT_SHORT=1m KUBERAY_TEST_TIMEOUT_MEDIUM=5m KUBERAY_TEST_TIMEOUT_LONG=10m go test -timeout 30m -v ./test/e2erayservice | awk -f ../.buildkite/format.awk || (kubectl logs --tail -1 -l app.kubernetes.io/name=kuberay && exit 1) && echo "--- END:e2e rayservice (nightly operator) tests finished"
Waited 35s
·
Ran in 22m 16s
Test Autoscaler E2E (nightly operator)source .buildkite/setup-env.sh && kind create cluster --wait 900s --config ./tests/framework/config/kind-config-buildkite.yml && kubectl config set clusters.kind-kind.server https://docker:6443 && pushd ray-operator && IMG=kuberay/operator:nightly make docker-image && kind load docker-image kuberay/operator:nightly && IMG=kuberay/operator:nightly make deploy && kubectl wait --timeout=90s --for=condition=Available=true deployment kuberay-operator && echo "--- START:Running Autoscaler e2e (nightly operator) tests" && KUBERAY_TEST_TIMEOUT_SHORT=1m KUBERAY_TEST_TIMEOUT_MEDIUM=5m KUBERAY_TEST_TIMEOUT_LONG=10m go test -timeout 30m -v ./test/e2eautoscaler | awk -f ../.buildkite/format.awk || (kubectl logs --tail -1 -l app.kubernetes.io/name=kuberay && exit 1) && echo "--- END:Autoscaler e2e (nightly operator) tests finished"
Waited 35s
·
Ran in 21m 55s
Test E2E (kubectl-plugin)source .buildkite/setup-env.sh && kind create cluster --wait 900s --config ./tests/framework/config/kind-config-buildkite.yml && kubectl config set clusters.kind-kind.server https://docker:6443 && echo Deploying Kuberay operator && pushd ray-operator && IMG=kuberay/operator:nightly make docker-image && kind load docker-image kuberay/operator:nightly && IMG=kuberay/operator:nightly make deploy && kubectl wait --timeout=90s --for=condition=Available=true deployment kuberay-operator && popd && pushd kubectl-plugin && go mod download && go build -o kubectl-ray -a ./cmd/kubectl-ray.go && cp ./kubectl-ray /usr/local/bin && echo "--- START:Running Test E2E (kubectl-plugin) tests" && KUBERAY_TEST_TIMEOUT_SHORT=1m KUBERAY_TEST_TIMEOUT_MEDIUM=5m KUBERAY_TEST_TIMEOUT_LONG=10m go test -timeout 60m -v ./test/e2e | awk -f ../.buildkite/format.awk && echo "--- END:Test E2E (kubectl-plugin) tests finished"
Waited 45s
·
Ran in 12m 1s
Test Sample YAMLs (nightly operator)source .buildkite/setup-env.sh && kind create cluster --wait 900s --config ./tests/framework/config/kind-config-buildkite.yml && kubectl config set clusters.kind-kind.server https://docker:6443 && pushd ray-operator && IMG=kuberay/operator:nightly make docker-image && kind load docker-image kuberay/operator:nightly && IMG=kuberay/operator:nightly make deploy && kubectl wait --timeout=90s --for=condition=Available=true deployment kuberay-operator && echo "--- START:Running Sample YAMLs (nightly operator) tests" && KUBERAY_TEST_TIMEOUT_SHORT=1m KUBERAY_TEST_TIMEOUT_MEDIUM=5m KUBERAY_TEST_TIMEOUT_LONG=10m go test -timeout 30m -v ./test/sampleyaml | awk -f ../.buildkite/format.awk && echo "--- END:Sample YAMLs (nightly operator) tests finished" && kubectl logs --tail -1 -l app.kubernetes.io/name=kuberay
Waited 2m 22s
·
Ran in 20m 48s
Test Sample YAMLs (latest release)source .buildkite/setup-env.sh && kind create cluster --wait 900s --config ./tests/framework/config/kind-config-buildkite.yml && kubectl config set clusters.kind-kind.server https://docker:6443 && pushd ray-operator && IMG=quay.io/kuberay/operator:v1.2.2 make deploy && kubectl wait --timeout=90s --for=condition=Available=true deployment kuberay-operator && echo "--- START:Running Sample YAMLs (latest release) tests" && KUBERAY_TEST_TIMEOUT_SHORT=1m KUBERAY_TEST_TIMEOUT_MEDIUM=5m KUBERAY_TEST_TIMEOUT_LONG=10m go test -timeout 30m -v ./test/sampleyaml | awk -f ../.buildkite/format.awk && echo "--- END:Sample YAMLs (latest release) tests finished" && kubectl logs --tail -1 -l app.kubernetes.io/name=kuberay
Waited 38s
·
Ran in 19m 44s
Total Job Run Time: 2h 2m