...
 
Commits (5)
    https://gitlab.dms3.io/dms3/go-dms3-util/-/commit/5fc63320ee627fedc62c52f3bab4f833bd6a225f configure pipeline 2021-05-17T11:09:44-04:00 tavit ohanian tavit@dms3.io https://gitlab.dms3.io/dms3/go-dms3-util/-/commit/62b69584e9a5f4dd72985243e973115fa2864747 configure pipeline 2021-05-18T08:33:18-04:00 tavit ohanian tavit@dms3.io https://gitlab.dms3.io/dms3/go-dms3-util/-/commit/f0981f3f4c3925350079b979ed73f4b5cc2b1707 Merge branch 'master' of https://gitlab.dms3.io/dms3/public/go-dms3-util 2021-05-24T05:29:47-04:00 tavit ohanian tavit@dms3.io https://gitlab.dms3.io/dms3/go-dms3-util/-/commit/519ef2929f382541f412cb45524876d1a5d22b96 refactor after forking multiformats 2021-08-20T12:21:10-04:00 tavit ohanian tavit@dms3.io https://gitlab.dms3.io/dms3/go-dms3-util/-/commit/219a549bfdb13420064adbc53a72c2b9ef3e5a72 Merge branch 'port-2021-04-20' 2021-08-20T12:24:32-04:00 tavit ohanian tavit@dms3.io
stages:
- build
- test
variables:
BUILD_DIR: "/tmp/$CI_CONCURRENT_PROJECT_ID"
before_script:
- mkdir -p $BUILD_DIR/src
- cd $BUILD_DIR/src
- if [ -d $CI_PROJECT_DIR ]
- then
- echo "soft link $CI_PROJECT_DIR exists"
- else
- echo "creating soft link $CI_PROJECT_DIR"
- ln -s $CI_PROJECT_DIR
- fi
- cd $CI_PROJECT_DIR
build:
stage: build
tags:
- testing
script:
- echo $CI_JOB_STAGE
- go build
test:
stage: test
tags:
- testing
script:
- echo $CI_JOB_STAGE
- go test -cover
coverage: '/coverage: \d+.\d+% of statements/'