Skip to content

Commit cd78041

Browse files
committed
introduce build.sh, add support for hooknook builds
1 parent e8e9afc commit cd78041

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.hook.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
deploy: ./build.sh

.travis-ci.sh

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,4 @@ tar xf coq-8.5beta1-build.tgz
66
pushd coq-8.5beta1
77
sudo make install > /dev/null 2>&1
88
popd
9-
make -k
10-
cd raft
11-
make -k
9+
./build.sh

build.sh

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/bash
2+
make -k -j
3+
cd raft
4+
make -k -j

0 commit comments

Comments
 (0)