Commit f9fe17d4 authored by tavit ohanian's avatar tavit ohanian

initial fork

parent 435579b6
Pipeline #419 failed with stages
in 19 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/'
...@@ -27,7 +27,7 @@ import ( ...@@ -27,7 +27,7 @@ import (
"time" "time"
"unsafe" "unsafe"
"github.com/libp2p/go-openssl/utils" "gitlab.dms3.io/p2p/go-openssl/utils"
) )
var ( var (
......
module github.com/libp2p/go-openssl module gitlab.dms3.io/p2p/go-openssl
require ( require (
github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572 github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb // indirect
) )
go 1.12 go 1.15
...@@ -25,7 +25,7 @@ import ( ...@@ -25,7 +25,7 @@ import (
"testing" "testing"
"time" "time"
"github.com/libp2p/go-openssl/utils" "gitlab.dms3.io/p2p/go-openssl/utils"
) )
var ( var (
......
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