Skip to content

Commit

Permalink
Merge pull request #6522 from ipfs/ci/fix-stuff
Browse files Browse the repository at this point in the history
ci: show the commit
  • Loading branch information
Stebalien authored Jul 16, 2019
2 parents 319e3c2 + dfbfd44 commit 7abc9da
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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" }}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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" }}
Expand Down

0 comments on commit 7abc9da

Please sign in to comment.