Skip to content

Commit

Permalink
Stop fighting with travis/github
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Mobarak committed Jun 12, 2018
1 parent d0c3e41 commit abd4215
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ SCRIPTS := .travis.sh \
do_clang_build.bash \
push_ccache.bash \
pull_ccache.bash \
most_recent_tag.bash \
s3_download.bash \

all: check base build
Expand Down
1 change: 1 addition & 0 deletions build_tag
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v17
2 changes: 0 additions & 2 deletions most_recent_tag.bash

This file was deleted.

2 changes: 1 addition & 1 deletion pull_ccache.bash
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if [[ -z "${VARIANT:-}" ]]; then
exit 1
fi

BUILD_VERSION="$(./most_recent_tag.bash)"
BUILD_VERSION="$(cat build_tag)"
ARCH="${ARCH//\\;/-}"

CCACHE_ARCHIVE="ccache-${VARIANT}-${ARCH}-${BUILD_VERSION}.tbz2"
Expand Down
2 changes: 1 addition & 1 deletion push_ccache.bash
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if [[ -z "${VARIANT:-}" ]]; then
exit 1
fi

BUILD_VERSION="$(./most_recent_tag.bash)"
BUILD_VERSION="$(cat build_tag)"
ARCH="${ARCH//\\;/-}"

CCACHE_ARCHIVE="ccache-${VARIANT}-${ARCH}-${BUILD_VERSION}.tbz2"
Expand Down
2 changes: 1 addition & 1 deletion s3_download.bash
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ set -xe
REPO="${PWD##*/}"
BUCKET="${BUCKET:-llvm-obfuscator-arm}"

BUILD_VERSION="$(./most_recent_tag.bash)"
BUILD_VERSION="$(cat build_tag)"
BUILD_PATH="$REPO/$BUILD_VERSION"
if [[ ! -z "$PRODUCT_VERSION" ]]; then
BUILD_PATH="$BUILD_PATH/$PRODUCT_VERSION"
Expand Down

0 comments on commit abd4215

Please sign in to comment.