Age | Commit message (Collapse) | Author |
|
|
|
1500 lines out output makes it hard to see where the
failure happends, especially on mobile. Drop the verbose
flag again.
This reverts commit 8cad0e2f4f288482d3528c80fb64fc1e55f26e34.
|
|
Fails with
get "golang.org/x/crypto/scrypt": verifying non-authoritative meta tag
package math/bits: unrecognized import path "math/bits" (import path does not begin with hostname)
Other projects have dropped the old Go version for the same
reason, example: https://github.com/nmrshll/gphotos-uploader-cli/issues/7
|
|
|
|
Let's log more details.
https://github.com/rfjakob/gocryptfs/issues/363
|
|
trusty (ubuntu 14.04) runs an ancient kernel (4.4)
|
|
Also add Go 1.12 to Travis.
|
|
We are hitting the
fatal: No names found, cannot describe anything.
problem in the symlink_race branch.
|
|
recent builds all failed with:
tests/fsck/fsck_test.go:12:2: cannot find package "github.com/pkg/xattr"
|
|
Only with the "-t" flag does go get download dependencies
that are only used in tests.
|
|
Released two days ago
|
|
|
|
Trying to build with these versions now throws this error:
# golang.org/x/sys/unix
../../../golang.org/x/sys/unix/ioctl.go:18: undefined: runtime.KeepAlive
It looks like x/sys/unix has dropped support for older Go
versions.
|
|
But make the output fold to reduce clutter.
Move wget to the install section, where output is folded by default.
|
|
"1.10" does not work as expected because it
is parsed as a floating point number:
https://github.com/travis-ci/travis-ci/issues/9247
Added benefit is that we always get the latest point
release.
|
|
|
|
|
|
...to latest point releases acc. to https://golang.org/dl/
|
|
|
|
|
|
Dup2 is not implemented on linux/arm64.
Fixes https://github.com/rfjakob/gocryptfs/issues/121 .
Also adds cross-compilation to CI.
|
|
Go 1.8.1. has been released recently. Use it for the Go 1.8 branch.
|
|
Also drop Go 1.4 from Travis CI and update other Go
versions to latest point release.
|
|
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
|
|
(Currently failing the tests!)
|
|
Otherwise the build fails once you have more than 50 commits
since the last tag.
You'd get:
$ ./build.bash
fatal: No names found, cannot describe anything.
|
|
Also update Go versions
|
|
Does not support testing.M, which means we cannot run the
test suite, which means we cannot claim to support it at
all.
|
|
|
|
Go 1.3.3 does not support testing.M, so skip the tests there.
|
|
Also, print the openssl version in Travis CI
|
|
|
|
|
|
|
|
|
|
|
|
Go 1.4.3 seems to be missing cipher.NewGCMWithNonceSize. Error:
cryptfs/openssl_test.go:23: undefined: cipher.NewGCMWithNonceSize
|
|
Build fails, see https://github.com/hanwen/go-fuse/pull/72 for details
This reverts commit 4637098b20ea82ff5a7ac1d75ea683d17e00e199.
|
|
|
|
|