diff options
author | Martin Schanzenbach <mschanzenbach@posteo.de> | 2020-09-23 21:42:51 +0200 |
---|---|---|
committer | Martin Schanzenbach <mschanzenbach@posteo.de> | 2020-09-23 21:42:51 +0200 |
commit | 6703e98276b8add678c65b55d556c1cb6d2d4e54 (patch) | |
tree | 5bb2013dc137f3a428bd3a396cb7bebcf73b9f11 | |
parent | 2e9de288510fb3f710d75711a7e50cb4c778ec85 (diff) | |
download | lsd0002-6703e98276b8add678c65b55d556c1cb6d2d4e54.tar.gz lsd0002-6703e98276b8add678c65b55d556c1cb6d2d4e54.zip |
add bb config
-rwxr-xr-x | .buildbot/build.sh | 3 | ||||
-rwxr-xr-x | .buildbot/firefly-x86_64-amdepyc_deploy.sh | 10 |
2 files changed, 13 insertions, 0 deletions
diff --git a/.buildbot/build.sh b/.buildbot/build.sh new file mode 100755 index 0000000..2aad486 --- /dev/null +++ b/.buildbot/build.sh | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | make | ||
diff --git a/.buildbot/firefly-x86_64-amdepyc_deploy.sh b/.buildbot/firefly-x86_64-amdepyc_deploy.sh new file mode 100755 index 0000000..0c8a3e2 --- /dev/null +++ b/.buildbot/firefly-x86_64-amdepyc_deploy.sh | |||
@@ -0,0 +1,10 @@ | |||
1 | #!/bin/bash | ||
2 | |||
3 | # Deploy rest api from buildbot | ||
4 | |||
5 | if [ -e index.html ]; then | ||
6 | rm index.html | ||
7 | fi | ||
8 | ln -s draft-schanzen-reclaimid.html index.html | ||
9 | chmod -R ag+rX draft-schanzen-reclaimid.* index.html . | ||
10 | rsync --exclude=".*" --exclude="Makefile" -a --delete ./ lsd@firefly.gnunet.org:~/public/lsd0002/ | ||