Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump jquery from 3.1.1 to 3.7.1 in /src/ui_ng #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Bump jquery from 3.1.1 to 3.7.1 in /src/ui_ng

9ed6766
Select commit
Loading
Failed to load commit list.
Open

Bump jquery from 3.1.1 to 3.7.1 in /src/ui_ng #2

Bump jquery from 3.1.1 to 3.7.1 in /src/ui_ng
9ed6766
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch required action Oct 26, 2023 in 1m 18s

Build Errored

The build errored.

Details

This is a normal build for the dependabot/npm_and_yarn/src/ui_ng/jquery-3.7.1 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Go
Operating System Linux (Trusty)
Go Version 1.7.3
Build Configuration
{
  "language": "go",
  "os": [
    "linux"
  ],
  "dist": "trusty",
  "sudo": true,
  "go": [
    "1.7.3"
  ],
  "go_import_path": "github.com/vmware/harbor",
  "services": [
    "docker"
  ],
  "env": [
    "jobs={:MYSQL_HOST=>\"localhost\", :MYSQL_PORT=>\"3306\", :MYSQL_USR=>\"root\", :MYSQL_PWD=>\"root123\", :MYSQL_DATABASE=>\"registry\", :SQLITE_FILE=>\"/tmp/registry.db\", :ADMIN_SERVER_URL=>\"http://127.0.0.1:8888\", :DOCKER_COMPOSE_VERSION=>\"1.7.1\", :HARBOR_ADMIN=>\"admin\", :HARBOR_ADMIN_PASSWD=>\"Harbor12345\", :UI_SECRET=>\"tempString\", :MAX_JOB_WORKERS=>\"3\", :AUTH_MODE=>\"db_auth\", :SELF_REGISTRATION=>\"on\", :KEY_PATH=>\"/data/secretkey\"}"
  ],
  "before_install": [
    "sudo ./tests/hostcfg.sh",
    "sudo ./tests/generateCerts.sh",
    "sudo ./make/prepare"
  ],
  "install": [
    "sudo apt-get update && sudo apt-get install -y libldap2-dev",
    "sudo apt-get install -y sqlite3",
    "go get -d github.com/docker/distribution",
    "go get -d github.com/docker/libtrust",
    "go get -d github.com/go-sql-driver/mysql",
    "go get github.com/golang/lint/golint",
    "go get github.com/GeertJohan/fgt",
    "curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose",
    "chmod +x docker-compose",
    "sudo mv docker-compose /usr/local/bin",
    "IP=`ip addr s eth0 |grep \"inet \"|awk '{print $2}' |awk -F \"/\" '{print $1}'`",
    "sudo sed -i '$a DOCKER_OPTS=\\\"--insecure-registry '$IP':5000\\\"' /etc/default/docker",
    "sudo service docker restart",
    "go get github.com/dghubble/sling",
    "go get github.com/stretchr/testify",
    "go get golang.org/x/tools/cmd/cover",
    "go get github.com/mattn/goveralls"
  ],
  "before_script": [
    "sudo sqlite3 /tmp/registry.db < make/common/db/registry_sqlite.sql",
    "sudo chmod 777 /tmp/registry.db"
  ],
  "script": [
    "sudo mkdir -p /etc/ui/ca/",
    "sudo mv ./tests/ca.crt /etc/ui/ca/",
    "sudo mkdir -p /harbor",
    "sudo mv ./VERSION /harbor/VERSION",
    "sudo service mysql stop",
    "sudo ./tests/testprepare.sh",
    "sudo docker-compose -f ./make/docker-compose.test.yml up -d",
    "go list ./... | grep -v -E 'vendor|tests' | xargs -L1 fgt golint",
    "go list ./... | grep -v -E 'vendor|tests' | xargs -L1 go vet",
    "export MYSQL_HOST=$IP",
    "export REGISTRY_URL=$IP:5000",
    "echo $REGISTRY_URL",
    "./tests/pushimage.sh",
    "cd tests",
    "sudo ./ldapprepare.sh",
    "cd ..",
    "go test -i ./src/ui ./src/adminserver ./src/jobservice",
    "sudo -E env \"PATH=$PATH\" ./tests/coverage4gotest.sh",
    "goveralls -coverprofile=profile.cov -service=travis-ci",
    "docker-compose -f make/docker-compose.test.yml down",
    "sudo rm -rf /data/config/*",
    "ls /data/cert",
    "sudo make install GOBUILDIMAGE=golang:1.7.3 COMPILETAG=compile_golangimage CLARITYIMAGE=vmware/harbor-clarity-ui-builder:1.1.1 NOTARYFLAG=true",
    "docker ps",
    "./tests/notarytest.sh",
    "./tests/swaggerchecker.sh",
    "./tests/startuptest.sh",
    "./tests/userlogintest.sh ${HARBOR_ADMIN} ${HARBOR_ADMIN_PASSWD}"
  ]
}