1e03e059fa
A crypto benchmark mode like "openssl speed". Example run: $ ./gocryptfs -speed AES-GCM-256-OpenSSL 180.89 MB/s (selected in auto mode) AES-GCM-256-Go 48.19 MB/s AES-SIV-512-Go 37.40 MB/s
34 lines
516 B
YAML
34 lines
516 B
YAML
language: go
|
|
|
|
git:
|
|
depth: 100
|
|
|
|
# Build with the lastest versions of Go 1.4, 1.5, 1.6, 1.7
|
|
# See https://golang.org/dl/
|
|
go:
|
|
- 1.4.3
|
|
- 1.5.4
|
|
- 1.6.3
|
|
- 1.7.1
|
|
- 1.8
|
|
|
|
install:
|
|
- go get .
|
|
|
|
script:
|
|
- openssl version
|
|
- go build
|
|
- ./build-without-openssl.bash
|
|
- ./build.bash
|
|
- ./gocryptfs -speed
|
|
- ./test.bash
|
|
|
|
# fuse on travis
|
|
sudo: required
|
|
dist: trusty
|
|
before_install:
|
|
- sudo apt-get install -qq fuse
|
|
- sudo modprobe fuse
|
|
- sudo chmod 666 /dev/fuse
|
|
- sudo chown root:$USER /etc/fuse.conf
|