mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-05 01:59:44 +01:00
0f0e27179b
Github actions work fine, we no longer needs travi-ci to trigger the tests. This commit removes it. Signed-off-by: Daniel Jiang <jiangd@vmware.com>
20 lines
545 B
Bash
Executable File
20 lines
545 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
set -e
|
|
|
|
export POSTGRESQL_HOST=$1
|
|
export REGISTRY_URL=http://$1:5000
|
|
export CHROME_BIN=chromium-browser
|
|
#export DISPLAY=:99.0
|
|
#sh -e /etc/init.d/xvfb start
|
|
|
|
sudo docker-compose -f ./make/docker-compose.test.yml up -d
|
|
sleep 10
|
|
./tests/pushimage.sh
|
|
docker ps
|
|
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
go test -race -i ./src/core ./src/jobservice
|
|
sudo -E env "PATH=$PATH" "POSTGRES_MIGRATION_SCRIPTS_PATH=$DIR/../../make/migrations/postgresql/" ./tests/coverage4gotest.sh
|
|
#goveralls -coverprofile=profile.cov -service=github || true |