Skip to content

Commit

Permalink
enha: e2e ci
Browse files Browse the repository at this point in the history
  • Loading branch information
veezhang committed Nov 10, 2023
1 parent de814ee commit 4bf6a81
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 12 deletions.
36 changes: 25 additions & 11 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,18 @@ on:
ref:
description: "Acceptable content: branch/tag/commit ID."
required: true
default: 'master'

defaults:
run:
shell: bash

jobs:
package:
name: build package
e2e:
name: e2e
runs-on:
- self-hosted
- nebula
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:
Expand All @@ -32,21 +29,38 @@ jobs:
ref: ${{ github.event.inputs.ref }}
- uses: actions/setup-go@v4
with:
go-version: 1.20
go-version: "1.20"
- uses: docker/login-action@v2
with:
registry: ${{ secrets.HARBOR_REGISTRY }}
username: ${{ secrets.HARBOR_USERNAME }}
password: ${{ secrets.HARBOR_PASSWORD }}
- 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
docker buildx rm ng-operator || true
- name: post clean kind clusters
uses: webiny/[email protected]
with:
run: >-
sh -c "
export PATH=$PATH:`go env GOPATH`/bin &&
kind get clusters | grep '^e2e-' | xargs -n1 kind delete cluster --name
"
- name: e2e
run: |
export E2E_DOCKER_CONFIG_JSON_SECRET=`cat ~/.docker/config.json| base64 -w 0`
make e2e E2EARGS="-labels category=tools -v=5"
make e2e E2EARGS="-v=5 -skip-features 'pv expansion|custom config for dynamic|tools for exporter'"
env:
E2E_OPERATOR_IMAGE: reg.vesoft-inc.com/cloud-dev/nebula-operator:snap-1.25
E2E_OPERATOR_INSTALL: "false"
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
E2E_NC_METAD_IMAGE: reg.vesoft-inc.com/vesoft-ent/nebula-metad-ent
E2E_NC_STORAGED_IMAGE: reg.vesoft-inc.com/vesoft-ent/nebula-storaged-ent
E2E_NC_LICENSE_MANAGER_URL: license.vesoft-inc.com:9119
E2E_NC_LICENSE_MANAGER_URL: license.vesoft-inc.com:9119
2 changes: 1 addition & 1 deletion hack/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ env | grep '^E2E_' | sort

echo -e "\nstarting e2e tests\n"

go test -timeout 1h -v ./tests/e2e -args -test.timeout 1h -test.v -v 4 -fail-fast "${@}"
go test -timeout 12h -v ./tests/e2e -args -test.timeout 12h -test.v -v 4 "${@}"
1 change: 1 addition & 0 deletions tests/e2e/envfuncsext/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ func (o *HelmOptions) WithOptions(opts ...HelmOption) *HelmOptions {
}
return o
}

func (o *HelmOptions) RawHelmOpts() *helm.Opts {
option := &helm.Opts{}
for _, op := range o.HelmOptions {
Expand Down

0 comments on commit 4bf6a81

Please sign in to comment.