diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-08-14 19:34:27 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2017-08-14 19:34:27 -0300 |
commit | 914a5ecc34da27d8521e0581f7cb29601a347d06 (patch) | |
tree | 64a28842907f955b0d63c346e1bd9eab015ed6c4 /.travis | |
parent | 732f74f3b4cd13bdf393c716c0c350ca9bf34f4c (diff) | |
download | blogc-914a5ecc34da27d8521e0581f7cb29601a347d06.tar.gz blogc-914a5ecc34da27d8521e0581f7cb29601a347d06.tar.bz2 blogc-914a5ecc34da27d8521e0581f7cb29601a347d06.zip |
travis: ship static amd64 binary
Diffstat (limited to '.travis')
-rw-r--r-- | .travis/targets/github-lambda.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis/targets/github-lambda.sh b/.travis/targets/github-lambda.sh index 48bfe55..e1e65dc 100644 --- a/.travis/targets/github-lambda.sh +++ b/.travis/targets/github-lambda.sh @@ -26,8 +26,10 @@ build() { pushd build/root/ > /dev/null zip "../blogc-github-lambda-${PV}.zip" * popd > /dev/null + + install -m 755 build/root/blogc "build/blogc-static-amd64-${PV}" } deploy() { - FILES=( build/*.zip ) + FILES=( build/*.zip build/blogc-static-* ) } |