[go: up one dir, main page]

roaring 0.3.1

http://roaringbitmap.org for http://www.rust-lang.org
Documentation
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

: ${TRAVIS:?'This should only be run on Travis CI'}
GITHUB_TOKEN=${1:?'Must provide github token'}
REPO_SLUG=${2:?'Must provide repo slug'}

echo "machine github.com login $GITHUB_TOKEN password x-oauth-basic" >> ~/.netrc
chmod 0600 ~/.netrc
git remote set-url --push origin "https://github.com/$REPO_SLUG"