12345678910111213141516171819202122 |
- cd ~/repos/wekan
- sudo apt-get -y install parallel
- ./releases/rebuild-release.sh
- #./releases/delete-phantomjs.sh
- cd ~/repos/wekan/.build
- zip -r wekan-$1.zip bundle
- # Can not build ppc64le version because
- # OpenPower Minicloud is having
- # emergency maintenance.
- # scp wekan-$1.zip o:/home/ubuntu/
- # echo "Bundle uploaded to x2/a/s/o."
- {
- scp wekan-$1.zip x2:/var/snap/wekan/common/releases.wekan.team/
- scp wekan-$1.zip a:/home/wekan/repos/
- scp wekan-$1.zip s:/home/linux1/
- } | parallel -k
- cd ..
- echo "Bundle uploaded to x2/a/s."
|