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/bash | |
DIST=${1?no distribution specified} | |
ARCH=${2:amd64} | |
set -e -x | |
NAME=debian-${DIST}-${ARCH} | |
debootstrap --no-check-gpg "--arch=$ARCH" "$DIST" "$NAME" http://archive.debian.org/debian | |
tar -C "$NAME" -c . | docker import - "$USER/$NAME" |
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
% Colors from www.ColorBrewer.org by Cynthia A. Brewer, Geography, Pennsylvania State University. | |
% Apache-Style Software License for ColorBrewer software and ColorBrewer Color Schemes | |
% | |
% Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University. | |
% | |
% Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. | |
% You may obtain a copy of the License at | |
% | |
% http://www.apache.org/licenses/LICENSE-2.0 |
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
language: go | |
go: | |
- tip | |
before_install: | |
- go get github.com/axw/gocov/gocov | |
- go get github.com/mattn/goveralls | |
- go get github.com/bradfitz/goimports | |
- go get github.com/golang/lint/golint | |
- go get golang.org/x/tools/cmd/vet | |
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi |
NewerOlder