8000 Use lein 2.9.1 in examples · adicoderanger/circleci-docs@d1a8011 · GitHub
[go: up one dir, main page]

Skip to content

Commit d1a8011

Browse files
committed
Use lein 2.9.1 in examples
1 parent ba362d8 commit d1a8011

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

jekyll/_cci2/language-clojure.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs: # basic units of work in a run
3434
build: # runs not using Workflows must have a `build` job as entry point
3535
working_directory: ~/cci-demo-clojure # directory where steps will run
3636
docker: # run the steps with Docker
37-
- image: circleci/clojure:lein-2.7.1 # ...with this image as the primary container; this is where all `steps` will run
37+
- image: circleci/clojure:lein-2.9.1 # ...with this image as the primary container; this is where all `steps` will run
3838
environment: # environment variables for primary container
3939
LEIN_ROOT: nbd
4040
JVM_OPTS: -Xmx3200m # limit the maximum heap size to prevent out of memory errors
@@ -91,7 +91,7 @@ Directly beneath `working_directory`, we can specify container images under a `d
9191
version: 2
9292
...
9393
docker:
94-
- image: circleci/clojure:lein-2.7.1
94+
- image: circleci/clojure:lein-2.9.1
9595
```
9696

9797
We use the [CircleCI-provided Clojure image](https://circleci.com/docs/2.0/circleci-images/#clojure) with the `lein-2.7.1` tag.
@@ -148,4 +148,3 @@ See the [Deploy]({{ site.baseurl }}/2.0/deployment-integrations/) document for e
148148
The app described in this guide illustrates the simplest possible setup for a Clojure web app. Real-world projects tend to be more complex, so you may find this more detailed example useful as you configure your own projects:
149149

150150
* [Syme](https://github.com/technomancy/syme/blob/master/.circleci/config.yml), a site which configures disposable virtual machines for remote collaboration (uses PostgreSQL, continuously deployed to Heroku)
151-

jekyll/_cci2_ja/language-clojure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs: # 1回の実行の基本作業単位
3636
build: # Workflows を使用しない実行では、エントリポイントとして `build` ジョブが必要
3737
working_directory: ~/cci-demo-clojure # ステップが実行されるディレクトリ
3838
docker: # Docker でステップを実行します
39-
- image: circleci/clojure:lein-2.7.1 # このイメージをすべての `steps` が実行されるプライマリコンテナとして使用します
39+
- image: circleci/clojure:lein-2.9.1 # このイメージをすべての `steps` が実行されるプライマリコンテナとして使用します
4040
environment: # プライマリコンテナの環境変数
4141
LEIN_ROOT: nbd
4242
JVM_OPTS: -Xmx3200m # メモリ不足エラーを回避するために最大ヒープサイズを制限します
@@ -93,7 +93,7 @@ jobs:
9393
version: 2
9494
...
9595
docker:
96-
- image: circleci/clojure:lein-2.7.1
96+
- image: circleci/clojure:lein-2.9.1
9797
```
9898

9999
`lein-2.7.1` タグを指定して [CircleCI 提供の Clojure イメージ](https://circleci.com/docs/ja/2.0/circleci-images/#clojure)を使用します。

0 commit comments

Comments
 (0)
0