-
Notifications
You must be signed in to change notification settings - Fork 5
/
.gitlab-ci.yml
28 lines (26 loc) · 1.03 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
image: golang:1.7.4
stages:
- test
go_tests:
stage: test
script:
- mkdir -p $GOPATH/src/gitlab.com/nitya-sattva/
- cd $GOPATH/src/gitlab.com/nitya-sattva/
- go version
- git clone https://gitlab.com/$CI_PROJECT_NAMESPACE/go-x11.git -b $CI_BUILD_REF_NAME
- go test ./go-x11/nist -coverprofile ./nist.log
- go test ./go-x11/blake -coverprofile ./blake.log
- go test ./go-x11/bmw -coverprofile ./bmw.log
- go test ./go-x11/cubed -coverprofile ./cubed.log
- go test ./go-x11/echo -coverprofile ./echo.log
- go test ./go-x11/gost -coverprofile ./gost.log
- go test ./go-x11/groest -coverprofile ./groest.log
- go test ./go-x11/jhash -coverprofile ./jhash.log
- go test ./go-x11/keccak -coverprofile ./keccak.log
- go test ./go-x11/luffa -coverprofile ./luffa.log
- go test ./go-x11/shavite -coverprofile ./shavite.log
- go test ./go-x11/simd -coverprofile ./simd.log
- go test ./go-x11/skein -coverprofile ./skein.log
- go test ./go-x11 -coverprofile ./x11.log
tags:
- docker