Commit 4f355df0 authored by tavit ohanian's avatar tavit ohanian

initial port

parent 78f3c4aa
Pipeline #298 passed with stages
in 2 minutes and 50 seconds
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/'
module github.com/ipfs/go-ipfs-files module gitlab.dms3.io/dms3/public/go-dms3-files
require ( require (
github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3 github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3
golang.org/x/sys v0.0.0-20190302025703-b6889370fb10 golang.org/x/sys v0.0.0-20190302025703-b6889370fb10
) )
go 1.12 go 1.15
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment