-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rebase, uwsgi cleanup, py-openssl fix, re-add inject_build_info
- Loading branch information
1 parent
8d16ce6
commit 12fd233
Showing
7 changed files
with
19 additions
and
102 deletions.
There are no files selected for viewing
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,11 @@ | ||
#!/bin/bash | ||
( | ||
|
||
set -e | ||
|
||
# Set cwd | ||
unset CDPATH | ||
cd "$( dirname "${BASH_SOURCE[0]}" )" | ||
|
||
# Dump the build info into version.json so it can be displayed in the footer | ||
# of the site pages. | ||
|
||
# { | ||
# "commit": "5683785e8cd6efdfd794a79828b2cccd2424ed21", | ||
# "timestamp": "January 12, 2016 at 2:46:23 PM CST", | ||
# "branch": "ng-constant" | ||
# } | ||
|
||
|
||
BRANCH_NAME=${1} | ||
COMMIT_HASH=${2} | ||
BUILD_TIMESTAMP=$(date -u +"%Y-%m-%dT%H:%M:%SZ") | ||
|
||
echo "{ | ||
\"commit\": \"${COMMIT_HASH}\", | ||
\"timestamp\": \"${BUILD_TIMESTAMP}\", | ||
\"branch\": \"${BRANCH_NAME}\" | ||
}" > version.json | ||
|
||
#!/usr/bin/env sh | ||
|
||
set -eu | ||
cat > version.json <<EOF | ||
{ | ||
"branch": "$1", | ||
"commit": "$2", | ||
"timestamp": "$(date -u +"%Y-%m-%dT%H:%M:%SZ")" | ||
} | ||
EOF | ||
cat version.json | ||
|
||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
django>=1.11.0,<1.12.0 | ||
elasticsearch==5.3.0 | ||
enum34==1.1.6 | ||
git+https://github.com/flywheel-io/[email protected]#egg=gears | ||
ipython | ||
jsonschema==2.6.0 | ||
Markdown==2.6.5 | ||
markdown==2.6.5 | ||
pymongo==3.2 | ||
pyOpenSSL >=17.1.0,<18.0 | ||
python-dateutil==2.4.2 | ||
pytz==2015.7 | ||
requests==2.9.1 | ||
rfc3987==1.3.4 | ||
strict-rfc3339==0.7 | ||
unicodecsv==0.9.0 | ||
webapp2==2.5.2 | ||
WebOb==1.5.1 | ||
git+https://github.com/flywheel-io/[email protected]#egg=gears | ||
webob==1.5.1 |