Skip to content

Commit

Permalink
Merge pull request #118 from lorengordon/pin-makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lorengordon authored Dec 29, 2020
2 parents 5a2b773 + 4aefdf9 commit 5656361
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0
current_version = 0.6.1
commit = True
message = Bumps version to {new_version}
tag = False
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/Makefile.bootstrap
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export SHELL = /bin/bash
export TARDIGRADE_CI_ORG ?= plus3it
export TARDIGRADE_CI_PROJECT ?= tardigrade-ci
export TARDIGRADE_CI_BRANCH ?= master
export TARDIGRADE_CI_BRANCH ?= $(or $(shell grep 'FROM $(TARDIGRADE_CI_ORG)/$(TARDIGRADE_CI_PROJECT)' Dockerfile | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' 2> /dev/null),master)
export TARDIGRADE_CI_PATH ?= $(shell until [ -d "$(TARDIGRADE_CI_PROJECT)" ] || [ "`pwd`" == '/' ]; do cd ..; done; pwd)/$(TARDIGRADE_CI_PROJECT)

-include $(TARDIGRADE_CI_PATH)/Makefile
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ fi

echo "Cloning ${GITHUB_REPO}#${TARDIGRADE_CI_BRANCH}..."

git clone -b "$TARDIGRADE_CI_BRANCH" "$GITHUB_REPO"
git clone -c advice.detachedHead=false --depth=1 -b "$TARDIGRADE_CI_BRANCH" "$GITHUB_REPO"

0 comments on commit 5656361

Please sign in to comment.