Skip to content

Commit

Permalink
v2.4.15
Browse files Browse the repository at this point in the history
  • Loading branch information
gencer committed Nov 2, 2023
1 parent 475f937 commit 623bd66
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 18 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v2.4.15

+ Discard broken S3 downloads. See #65, #64 by @bradleyayers

# v2.4.14

+ Remove existing tar file when cache **always** is set to `true`. See #59 by @jebentier
Expand Down
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Cache Buildkite Plugin [![Version badge](https://img.shields.io/badge/cache-v2.4.14-blue?style=flat-square)](https://buildkite.com/plugins) [![CI](https://github.com/nienbo/cache-buildkite-plugin/actions/workflows/ci.yml/badge.svg)](https://github.com/nienbo/cache-buildkite-plugin/actions/workflows/ci.yml) <!-- omit in toc -->
# Cache Buildkite Plugin [![Version badge](https://img.shields.io/badge/cache-v2.4.15-blue?style=flat-square)](https://buildkite.com/plugins) [![CI](https://github.com/nienbo/cache-buildkite-plugin/actions/workflows/ci.yml/badge.svg)](https://github.com/nienbo/cache-buildkite-plugin/actions/workflows/ci.yml) <!-- omit in toc -->

### Tarball, Rsync & S3 Cache Kit for Buildkite. Supports Linux, macOS and Windows* <!-- omit in toc -->

Expand Down Expand Up @@ -83,7 +83,7 @@ S3 backend uses **AWS CLI** v**1** or v**2** to copy and download from/to S3 buc
```yml
steps:
- plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand Down Expand Up @@ -113,7 +113,7 @@ Use `endpoint` and `region` fields to pass host and region parameters to be able
```yml
steps:
- plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand Down Expand Up @@ -149,7 +149,7 @@ Enabling this interoperability in Google Cloud Storage will generate the respect
```yml
steps:
- plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand Down Expand Up @@ -204,7 +204,7 @@ You can also use rsync to store your files using the `rsync` backend. Files will
```yml
steps:
- plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: rsync
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand All @@ -229,7 +229,7 @@ You can also use tarballs to store your files using the `tarball` backend. Files
```yml
steps:
- plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: tarball
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand Down Expand Up @@ -274,7 +274,7 @@ Along with lock files, you can calculate directory that contains multiple files
```yml
steps:
- plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: node # or node-16
backend: tarball # Optional. Default `backend` is already set to `tarball`
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum './app/javascript' }}" # Calculate whole 'app/javascript' recursively
Expand All @@ -300,7 +300,7 @@ You can skip caching on Pull Requests (Merge Requests) by simply adding `pr: fal
```yml
steps:
- plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand Down Expand Up @@ -356,8 +356,8 @@ ruby-cache: &ruby-cache
- 'bundler/vendor'

all-plugins: &all-plugins
- nienbo/cache#v2.4.14: *node-cache
- nienbo/cache#v2.4.14: *ruby-cache
- nienbo/cache#v2.4.15: *node-cache
- nienbo/cache#v2.4.15: *ruby-cache
- docker#v3.7.0: ~ # Use your config here

steps:
Expand All @@ -382,7 +382,7 @@ steps:
key: jest
command: yarn test --runInBand
plugins:
- nienbo/cache#v2.4.14: # Define cache *before* docker plugins.
- nienbo/cache#v2.4.15: # Define cache *before* docker plugins.
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand All @@ -407,7 +407,7 @@ steps:
key: jest
command: yarn test --runInBand
plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand Down Expand Up @@ -438,7 +438,7 @@ steps:
key: jest
command: yarn test --runInBand
plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand All @@ -464,7 +464,7 @@ steps:
key: jest
command: yarn test --runInBand
plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand All @@ -489,7 +489,7 @@ steps:
key: jest
command: yarn test --runInBand
plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand All @@ -514,7 +514,7 @@ steps:
key: jest
command: yarn test --runInBand
plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand Down Expand Up @@ -547,7 +547,7 @@ steps:
key: jest
command: yarn test --runInBand
plugins:
- nienbo/cache#v2.4.14:
- nienbo/cache#v2.4.15:
id: ruby # or ruby-3.0
backend: s3
key: "v1-cache-{{ id }}-{{ runner.os }}-{{ checksum 'Gemfile.lock' }}"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.14
2.4.15

0 comments on commit 623bd66

Please sign in to comment.