-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,45 +20,12 @@ jobs: | |
runs-on: | ||
- self-hosted | ||
- nebula | ||
# container: | ||
# image: reg.vesoft-inc.com/ci/ubuntu:22.04-dind | ||
# volumes: | ||
# - /var/lib/dind:/var/lib/docker | ||
# options: --privileged | ||
# env: | ||
# DOCKER_HOST: unix:///.docker.sock | ||
# services: | ||
# dind: | ||
# image: docker:dind | ||
# env: | ||
# DOCKER_TLS_CERTDIR: "" # disable TLS | ||
# volumes: | ||
# - /var/lib/dind:/var/lib/docker | ||
# ports: | ||
# - 2375:2375 | ||
# - 2376:2376 | ||
# options: >- | ||
# --privileged | ||
# --health-cmd "docker info" | ||
# --health-interval 10s | ||
# --health-timeout 5s | ||
# --health-retries 5 | ||
# container: | ||
# image: reg.vesoft-inc.com/ci/ubuntu:22.04-dind # docker:dind | ||
# volumes: | ||
# - /var/lib/dind:/var/lib/docker | ||
# options: --privileged | ||
# env: | ||
# DOCKER_HOST: unix:///.docker.sock | ||
|
||
# container: | ||
# image: reg.vesoft-inc.com/ci/ubuntu:20.04-docker | ||
# volumes: | ||
# - /var/run/docker.sock:/var/run/docker.sock | ||
steps: | ||
- uses: webiny/[email protected] | ||
with: | ||
run: sh -c "find . -mindepth 1 -delete" | ||
run: | | ||
kind get clusters | grep '^e2e-' | xargs -n1 kind delete cluster --name | ||
sh -c "find . -mindepth 1 -delete" | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.inputs.ref }} | ||
|
@@ -73,18 +40,17 @@ jobs: | |
- run: | | ||
git config --global --add safe.directory $(pwd) | ||
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash | ||
# - name: build operator image | ||
# run: | | ||
# export DOCKER_REPO=reg.vesoft-inc.com/ci | ||
# export IMAGE_TAG=ci-e2e | ||
# make docker-multiarch | ||
- name: build operator image | ||
run: | | ||
export DOCKER_REPO=reg.vesoft-inc.com/ci | ||
export IMAGE_TAG=ci-e2e | ||
make docker-multiarch | ||
- name: e2e | ||
run: | | ||
export E2E_DOCKER_CONFIG_JSON_SECRET=`cat ~/.docker/config.json| base64 -w 0` | ||
make e2e E2EARGS="-labels category=tools -v=5" | ||
env: | ||
# DOCKER_HOST: dind:2375 | ||
E2E_OPERATOR_IMAGE: reg.vesoft-inc.com/cloud-dev/nebula-operator:snap-1.25 | ||
E2E_OPERATOR_IMAGE: reg.vesoft-inc.com/ci/nebula-operator:ci-e2e | ||
E2E_OPERATOR_INSTALL: "true" | ||
E2E_NC_VERSION: v3.6.0 | ||
E2E_NC_GRAPHD_IMAGE: reg.vesoft-inc.com/vesoft-ent/nebula-graphd-ent | ||
|