This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Installs NodeJS & npm from sources on Ubuntu | |
set -e | |
apt-get install -y build-essential python curl wget | |
cd /tmp | |
wget http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Installs CouchDb to Ubuntu 12.04 | |
# for docker ubuntu:12.04 | |
set -e | |
# echo "deb http://archive.ubuntu.com/ubuntu precise universe" > /etc/apt/sources.list.d/ubuntu-precise-universe.list | |
# apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# script to upload binaries to github release from Jenkins | |
# [email protected] | |
require 'json' | |
require 'restclient' | |
require 'uri' | |
GITHUB_OAUTH_TOKEN=ENV['GITHUB_OAUTH_TOKEN'] || abort("GITHUB_OAUTH_TOKEN not specified") |
NewerOlder