You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1004 B

  1. image: golang:1.7.4
  2. stages:
  3. - test
  4. go_tests:
  5. stage: test
  6. script:
  7. - mkdir -p $GOPATH/src/gitlab.com/nitya-sattva/
  8. - cd $GOPATH/src/gitlab.com/nitya-sattva/
  9. - go version
  10. - git clone https://gitlab.com/$CI_PROJECT_NAMESPACE/go-x11.git -b $CI_BUILD_REF_NAME
  11. - go test ./go-x11/nist -coverprofile ./nist.log
  12. - go test ./go-x11/blake -coverprofile ./blake.log
  13. - go test ./go-x11/bmw -coverprofile ./bmw.log
  14. - go test ./go-x11/cubed -coverprofile ./cubed.log
  15. - go test ./go-x11/echo -coverprofile ./echo.log
  16. - go test ./go-x11/groest -coverprofile ./groest.log
  17. - go test ./go-x11/jhash -coverprofile ./jhash.log
  18. - go test ./go-x11/keccak -coverprofile ./keccak.log
  19. - go test ./go-x11/luffa -coverprofile ./luffa.log
  20. - go test ./go-x11/shavite -coverprofile ./shavite.log
  21. - go test ./go-x11/simd -coverprofile ./simd.log
  22. - go test ./go-x11/skein -coverprofile ./skein.log
  23. - go test ./go-x11 -coverprofile ./x11.log
  24. tags:
  25. - docker