File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Java CI
2+
3+ on : [push]
4+
5+ jobs :
6+ build :
7+
8+ runs-on : ubuntu-latest
9+
10+ steps :
11+ - uses : actions/checkout@v1
12+ - name : Set up JDK 11
13+ uses : actions/setup-java@v1
14+ with :
15+ java-version : 11
16+ - name : Install and run ipfs
17+ run : install-run-ipfs.sh
18+ - name : Build with Ant
19+ run : ant -noinput -buildfile build.xml dist
20+ - name : Run tests
21+ timeout-minutes : 10
22+ run : ant -noinput -buildfile build.xml test
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+ wget https://dist.ipfs.io/go-ipfs/v0.5.0/go-ipfs_v0.5.0_linux-amd64.tar.gz -O /tmp/go-ipfs_linux-amd64.tar.gz
3+ tar -xvf /tmp/go-ipfs_linux-amd64.tar.gz
4+ export PATH=$PATH :$PWD /go-ipfs/
5+ ipfs init
6+ ipfs daemon --enable-pubsub-experiment &
You can’t perform that action at this time.
0 commit comments