Skip to content
Snippets Groups Projects
Commit 5859b51e authored by Erick Hitter's avatar Erick Hitter
Browse files

Make sure there's a config file to work with

parent 36819465
Branches
Tags
1 merge request!4Better CI
Pipeline #159 passed
......@@ -19,6 +19,7 @@ before_script:
- mkdir -p $GOPATH/src/$(dirname $REPO_NAME)
- cp -R $CI_PROJECT_DIR $GOPATH/src/$REPO_NAME
- cd $GOPATH/src/$REPO_NAME
- cp config-sample.json config.json
- export CC=clang-5.0
......
......@@ -11,13 +11,13 @@ lint:
@golint -set_exit_status ${PKG_LIST}
test:
@go test -v -short ${PKG_LIST}
@go test -v ${PKG_LIST}
race: dep
@go test -v -race -short ${PKG_LIST}
@go test -v -race ${PKG_LIST}
msan: dep
@go test -v -msan -short ${PKG_LIST}
@go test -v -msan ${PKG_LIST}
coverage:
./tools/coverage.sh;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment