Unverified Commit 7abc9dac authored by Steven Allen's avatar Steven Allen Committed by GitHub

Merge pull request #6522 from ipfs/ci/fix-stuff

ci: show the commit
parents 319e3c2d dfbfd44b
......@@ -21,6 +21,7 @@ aliases:
defaults: &defaults
working_directory: ~/ipfs/go-ipfs
environment:
GIT_PAGER: cat
GO111MODULE: "on"
TEST_NO_DOCKER: 1
TEST_NO_FUSE: 1
......@@ -149,7 +150,11 @@ jobs:
- *make_out_dirs
- attach_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:
keys:
- v1-interop-{{ checksum "~/ipfs/go-ipfs/interop/package-lock.json" }}
......@@ -178,7 +183,9 @@ jobs:
at: /tmp/circleci-workspace
- run:
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:
name: Starting the daemon
command: /tmp/circleci-workspace/bin/ipfs daemon --init --enable-namesys-pubsub
......@@ -215,7 +222,9 @@ jobs:
at: /tmp/circleci-workspace
- run:
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:
keys:
- 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