ci: show the commit
Steven Allen committed
Jul 16, 2019 at 11:01 UTC
dfbfd44bac6b19138bad7d27a74c2c6f423ef4bf
1 file changed
+12
-3
.circleci/config.yml
+12
-3
@@ -21,6 +21,7 @@ aliases:
21
defaults: &defaults
22
working_directory: ~/ipfs/go-ipfs
23
environment:
24
+ GIT_PAGER: cat
25
GO111MODULE: "on"
26
TEST_NO_DOCKER: 1
27
TEST_NO_FUSE: 1
@@ -149,7 +150,11 @@ jobs:
150
- *make_out_dirs
151
- attach_workspace:
152
at: /tmp/circleci-workspace
152
- - run: git clone https://github.com/ipfs/interop.git
153
+ - run:
154
+ name: Cloning
155
+ command: |
156
+ git clone https://github.com/ipfs/interop.git
157
+ git -C interop log -1
158
- restore_cache:
159
keys:
160
- v1-interop-{{ checksum "~/ipfs/go-ipfs/interop/package-lock.json" }}
@@ -178,7 +183,9 @@ jobs:
183
at: /tmp/circleci-workspace
184
- run:
185
name: Cloning
181
- command: git clone https://github.com/ipfs/go-ipfs-api.git
186
+ command: |
187
+ git clone https://github.com/ipfs/go-ipfs-api.git
188
+ git -C go-ipfs-api log -1
189
- run:
190
name: Starting the daemon
191
command: /tmp/circleci-workspace/bin/ipfs daemon --init --enable-namesys-pubsub
@@ -215,7 +222,9 @@ jobs:
222
at: /tmp/circleci-workspace
223
- run:
224
name: Cloning
218
- command: git clone https://github.com/ipfs/go-ipfs-http-client.git
225
+ command: |
226
+ git clone https://github.com/ipfs/go-ipfs-http-client.git
227
+ git -C go-ipfs-http-client log -1
228
- restore_cache:
229
keys:
230
- v1-http-client-{{ checksum "~/ipfs/go-ipfs/go-ipfs-http-client/go.sum" }}