Skip to content

Commit

Permalink
v2.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
gencer committed Jan 22, 2021
1 parent ca5a924 commit a8b1845
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v2.3.8

+ Add $BK_AWS_ARGS to head-object call See #19.
+ Fix README docker example

# v2.3.7

+ Do not check `busybox` on macOS. See #17.
Expand Down
18 changes: 9 additions & 9 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.3.7-blue?style=flat-square)](https://buildkite.com/plugins) [![Build status](https://badge.buildkite.com/eb76936a02fe8d522fe8cc986c034a6a8d83c7ec75e607f7bb.svg)](https://buildkite.com/gencer/buildkite-cache)
# Cache Buildkite Plugin [![Version badge](https://img.shields.io/badge/cache-v2.3.8-blue?style=flat-square)](https://buildkite.com/plugins) [![Build status](https://badge.buildkite.com/eb76936a02fe8d522fe8cc986c034a6a8d83c7ec75e607f7bb.svg)](https://buildkite.com/gencer/buildkite-cache)


### Tarball, Rsync & S3 Cache Kit for Buildkite. Supports Linux, macOS and Windows*
Expand Down Expand Up @@ -42,7 +42,7 @@ variables defined in your agent. Content of the paths will be packed with `tar`
```yml
steps:
- plugins:
- gencer/cache#v2.3.7:
- gencer/cache#v2.3.8:
backend: s3
key: "v1-cache-{{ runner.os }}-{{ checksum 'Podfile.lock' }}"
s3:
Expand Down Expand Up @@ -85,7 +85,7 @@ You can also use rsync to store your files using the `rsync` backend. Files will
```yml
steps:
- plugins:
- gencer/cache#v2.3.7:
- gencer/cache#v2.3.8:
backend: rsync
key: "v1-cache-{{ runner.os }}-{{ checksum 'Podfile.lock' }}"
rsync:
Expand All @@ -108,7 +108,7 @@ You can also use tarballs to store your files using the `tarball` backend. Files
```yml
steps:
- plugins:
- gencer/cache#v2.3.7:
- gencer/cache#v2.3.8:
backend: tarball
key: "v1-cache-{{ runner.os }}-{{ checksum 'Podfile.lock' }}"
tarball:
Expand Down Expand Up @@ -138,7 +138,7 @@ Along with lock files, you can calculate directory that contains multiple files
```yml
steps:
- plugins:
- gencer/cache#v2.3.7:
- gencer/cache#v2.3.8:
backend: tarball
key: "v1-cache-{{ runner.os }}-{{ checksum './app/javascript' }}" # Calculate whole 'app/javascript' recursively
tarball:
Expand All @@ -161,7 +161,7 @@ You can skip caching on Pull Requests (Merge Requests) by simply adding `pr: fal
```yml
steps:
- plugins:
- gencer/cache#v2.3.7:
- gencer/cache#v2.3.8:
backend: s3
key: "v1-cache-{{ runner.os }}-{{ checksum 'Podfile.lock' }}"
pr: false # Default to `true` which is do cache on PRs.
Expand Down Expand Up @@ -203,13 +203,13 @@ steps:
key: jest
command: yarn test --runInBand
plugins:
- gencer/cache#v2.3.7: *cache
- gencer/cache#v2.3.8: *cache
- name: ':istanbul: Run Istanbul'
key: istanbul
depends_on: jest
command: .buildkite/steps/istanbul.sh
plugins:
- gencer/cache#v2.3.7: *cache
- gencer/cache#v2.3.8: *cache
```
### Usage with docker
Expand All @@ -222,7 +222,7 @@ steps:
key: jest
command: yarn test --runInBand
plugins:
- gencer/cache#v2.3.7: # Define cache *before* docker plugins.
- gencer/cache#v2.3.8: # Define cache *before* docker plugins.
backend: s3
key: "v1-cache-{{ runner.os }}-{{ checksum 'Podfile.lock' }}"
pr: false
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.7
2.3.8

0 comments on commit a8b1845

Please sign in to comment.