diff --git a/CHANGELOG.md b/CHANGELOG.md index 233434b9..a2b26bf4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,11 +21,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [#86](https://github.com/meltwater/drone-cache/pull/86) Add backend operation timeout option that cancels request if they take longer than given duration. `BACKEND_OPERATION_TIMEOUT`, `backend.operation-timeot`. Default value is `3 minutes`. - [#86](https://github.com/meltwater/drone-cache/pull/86) Customize the cache key in the path. Adds a new `remote_root` option to customize it. Defaults to `repo.name`. - Fixes [#97](https://github.com/meltwater/drone-cache/issues/97). - [#89](https://github.com/meltwater/drone-cache/pull/89) Add Azure Storage Backend. - [#84](https://github.com/meltwater/drone-cache/pull/84) Adds compression level option. - [#77](https://github.com/meltwater/drone-cache/pull/77) Adds a new hidden CLI flag to be used for tests. - [#73](https://github.com/meltwater/drone-cache/pull/73) Add Google Cloud storage support - [#68](https://github.com/meltwater/drone-cache/pull/68) Introduces new storage backend, sFTP. +[#89](https://github.com/meltwater/drone-cache/pull/89) Add Azure Storage Backend. +[#84](https://github.com/meltwater/drone-cache/pull/84) Adds compression level option. +[#77](https://github.com/meltwater/drone-cache/pull/77) Adds a new hidden CLI flag to be used for tests. +[#73](https://github.com/meltwater/drone-cache/pull/73) Add Google Cloud storage support +[#68](https://github.com/meltwater/drone-cache/pull/68) Introduces new storage backend, sFTP. ### Changed diff --git a/archive/gzip/gzip_test.go b/archive/gzip/gzip_test.go index 6c1e4671..c18ba9e8 100644 --- a/archive/gzip/gzip_test.go +++ b/archive/gzip/gzip_test.go @@ -54,7 +54,7 @@ func TestCreate(t *testing.T) { name: "non-existing mount paths", tgz: New(log.NewNopLogger(), testRootMounted, true, flate.DefaultCompression), srcs: []string{ - "idonotexist", + "iamnotexists", "metoo", }, written: 0, @@ -119,7 +119,6 @@ func TestCreate(t *testing.T) { return } - // Test for _, src := range absSrcs { test.Ok(t, os.RemoveAll(src)) }