Last active
December 11, 2019 10:36
-
-
Save magicien/5ee7bbc5d908edf24e288794f82a38ec to your computer and use it in GitHub Desktop.
chruby-disabled checkout script for CircleCI
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 | |
| set -e | |
| # Disable chruby | |
| trap - DEBUG || true | |
| # Workaround old docker images with incorrect $HOME | |
| # check https://github.com/docker/docker/issues/2968 for details | |
| if [ "${HOME}" = "/" ] | |
| then | |
| export HOME=$(getent passwd $(id -un) | cut -d: -f6) | |
| fi | |
| mkdir -p ~/.ssh | |
| echo 'github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ== | |
| bitbucket.org ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAubiN81eDcafrgMeLzaFPsw2kNvEcqTKl/VqLat/MaB33pZy0y3rJZtnqwR2qOOvbwKZYKiEO1O6VqNEBxKvJJelCq0dTXWT5pbO2gDXC6h6QDXCaHo6pOHGPUy+YBaGQRGuSusMEASYiWunYN0vCAI8QaXnWMXNMdFP3jHAJH0eDsoiGnLPBlBp4TNm6rYI74nMzgz3B9IikW4WVK+dc8KZJZWYjAuORU3jc1c/NPskD2ASinf8v3xnfXeukU0sJ5N6m5E8VLjObPEO+mN2t/FZTMZLiFqPWc/ALSqnMnnhwrNi2rbfg/rd/IpL8Le3pSBne8+seeFVBoGqzHM9yXw== | |
| ' >> ~/.ssh/known_hosts | |
| (umask 077; touch ~/.ssh/id_rsa) | |
| chmod 0600 ~/.ssh/id_rsa | |
| (cat <<EOF > ~/.ssh/id_rsa | |
| $CHECKOUT_KEY | |
| EOF | |
| ) | |
| # use git+ssh instead of https | |
| git config --global url."ssh://[email protected]".insteadOf "https://github.com" || true | |
| git config --global gc.auto 0 || true | |
| if [ -e ~/project/.git ] | |
| then | |
| cd ~/project | |
| git remote set-url origin "$CIRCLE_REPOSITORY_URL" || true | |
| else | |
| mkdir -p ~/project | |
| cd ~/project | |
| git clone "$CIRCLE_REPOSITORY_URL" . | |
| fi | |
| if [ -n "$CIRCLE_TAG" ] | |
| then | |
| git fetch --force origin "refs/tags/${CIRCLE_TAG}" | |
| else | |
| git fetch --force origin "$CIRCLE_BRANCH:remotes/origin/$CIRCLE_BRANCH" | |
| fi | |
| if [ -n "$CIRCLE_TAG" ] | |
| then | |
| git reset --hard "$CIRCLE_SHA1" | |
| git checkout -q "$CIRCLE_TAG" | |
| elif [ -n "$CIRCLE_BRANCH" ] | |
| then | |
| git reset --hard "$CIRCLE_SHA1" | |
| git checkout -q -B "$CIRCLE_BRANCH" | |
| fi | |
| git reset --hard "$CIRCLE_SHA1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment