Compare commits

..

7 Commits

Author SHA1 Message Date
jolheiser 22ba431f90
CI
continuous-integration/woodpecker the build failed Details
2021-10-08 16:19:52 -05:00
jolheiser 8181d1d911
Test plugin
continuous-integration/woodpecker the build was successful Details
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2021-10-08 16:13:16 -05:00
jolheiser aa2ab87542
CI
continuous-integration/woodpecker the build failed Details
2021-10-08 16:12:29 -05:00
jolheiser 1b55553512
Clone
continuous-integration/woodpecker the build failed Details
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2021-10-08 16:11:00 -05:00
jolheiser e6d25c4883
CI
continuous-integration/woodpecker the build was successful Details
2021-10-08 16:08:20 -05:00
jolheiser efa4c09883
CI 2021-10-08 16:01:38 -05:00
jolheiser b1161035be
Add cache purge
continuous-integration/woodpecker the build was successful Details
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2021-10-08 15:59:03 -05:00
2 changed files with 4 additions and 10 deletions

View File

@ -1,3 +1,7 @@
clone:
git:
image: docker.io/a6543/test_git_plugin:latest
pipeline: pipeline:
compliance: compliance:
image: golang:1.17 image: golang:1.17

View File

@ -98,13 +98,3 @@ func WithSub(sub string) Option {
return return
} }
} }
// WithCaching sets a caching mode for an FS
// Caching avoids subsequent os.Stat to determine if a file exists on disk
// See bench.txt for differences in usage
func WithCaching(doCache bool) Option {
return func(x *FS) error {
x.doCache = doCache
return nil
}
}