Commit 24585955 authored by Steven Allen's avatar Steven Allen

ci: show the commit

parent cf76b0d7
...@@ -21,6 +21,7 @@ aliases: ...@@ -21,6 +21,7 @@ aliases:
defaults: &defaults defaults: &defaults
working_directory: ~/ipfs/go-ipfs working_directory: ~/ipfs/go-ipfs
environment: environment:
GIT_PAGER: cat
GO111MODULE: "on" GO111MODULE: "on"
TEST_NO_DOCKER: 1 TEST_NO_DOCKER: 1
TEST_NO_FUSE: 1 TEST_NO_FUSE: 1
...@@ -149,7 +150,11 @@ jobs: ...@@ -149,7 +150,11 @@ jobs:
- *make_out_dirs - *make_out_dirs
- attach_workspace: - attach_workspace:
at: /tmp/circleci-workspace at: /tmp/circleci-workspace
- run: git clone https://github.com/ipfs/interop.git - run:
name: Cloning
command: |
git clone https://github.com/ipfs/interop.git
git -C interop log -1
- restore_cache: - restore_cache:
keys: keys:
- v1-interop-{{ checksum "~/ipfs/go-ipfs/interop/package-lock.json" }} - v1-interop-{{ checksum "~/ipfs/go-ipfs/interop/package-lock.json" }}
...@@ -178,7 +183,9 @@ jobs: ...@@ -178,7 +183,9 @@ jobs:
at: /tmp/circleci-workspace at: /tmp/circleci-workspace
- run: - run:
name: Cloning name: Cloning
command: git clone https://github.com/ipfs/go-ipfs-api.git command: |
git clone https://github.com/ipfs/go-ipfs-api.git
git -C go-ipfs-api log -1
- run: - run:
name: Starting the daemon name: Starting the daemon
command: /tmp/circleci-workspace/bin/ipfs daemon --init --enable-namesys-pubsub command: /tmp/circleci-workspace/bin/ipfs daemon --init --enable-namesys-pubsub
...@@ -215,7 +222,9 @@ jobs: ...@@ -215,7 +222,9 @@ jobs:
at: /tmp/circleci-workspace at: /tmp/circleci-workspace
- run: - run:
name: Cloning name: Cloning
command: git clone https://github.com/ipfs/go-ipfs-http-client.git command: |
git clone https://github.com/ipfs/go-ipfs-http-client.git
git -C go-ipfs-http-client log -1
- restore_cache: - restore_cache:
keys: keys:
- v1-http-client-{{ checksum "~/ipfs/go-ipfs/go-ipfs-http-client/go.sum" }} - v1-http-client-{{ checksum "~/ipfs/go-ipfs/go-ipfs-http-client/go.sum" }}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment