Skip to content
Snippets Groups Projects
Commit 31c00358 authored by Tom Robinson's avatar Tom Robinson
Browse files

Move version and dox Makefile to scripts in bin/

parent fd6d628a
No related branches found
No related tags found
No related merge requests found
#! /bin/bash
#!/usr/bin/env bash
# Generate the resources/version.properties file
version() {
# Skip on CircleCI since this is interactive
if [ ! $CI ]; then
VERSION_INFO=$(./version)
VERSION_INFO=$(./bin/version)
IFS=', ' read -a info <<< ${VERSION_INFO}
echo "Tagging uberjar with version '$VERSION_INFO'..."
......
.PHONY: dox
#!/usr/bin/env bash
set -eu
set -o pipefail
# Generate Marginalia dox and push them to GitHub pages for this repo
# You should do this from an up-to-date `master` branch without untracked local changes
dox:
git checkout master
git pull
lein marg
cp ./docs/uberdoc.html ~/Desktop/index.html.temp
git checkout gh-pages
git pull
rm index.html
mv ~/Desktop/index.html.temp index.html
git add index.html
git commit -m "Updated dox."
git push
git checkout master
git checkout master
git pull
lein marg
cp ./docs/uberdoc.html ~/Desktop/index.html.temp
git checkout gh-pages
git pull
rm index.html
mv ~/Desktop/index.html.temp index.html
git add index.html
git commit -m "Updated dox."
git push
git checkout master
#!/usr/bin/env bash
[ "$PORT" ] && export MB_JETTY_PORT="$PORT"
set -e
# Translate various Heroku environment variables to Metabase equivalents
[ "$DATABASE_URL" ] && export MB_DB_CONNECTION_URI="$DATABASE_URL"
if [ "$PORT" ]; then
export MB_JETTY_PORT="$PORT"
fi
if [ "$DATABASE_URL" ]; then
export MB_DB_CONNECTION_URI="$DATABASE_URL"
fi
if [ "$MAILGUN_SMTP_LOGIN" ]; then
export MB_EMAIL_SMTP_HOST="$MAILGUN_SMTP_PASSWORD"
......
#! /bin/bash
#!/usr/bin/env bash
# Return the version string used to describe this version of Metabase.
......
......@@ -77,7 +77,7 @@
;; Metabase version is of the format `GIT-TAG (GIT-SHORT-HASH GIT-BRANCH)`
(defn- version-info-from-shell-script []
(let [[tag hash branch date] (-> (shell/sh "./version") :out s/trim (s/split #" "))]
(let [[tag hash branch date] (-> (shell/sh "./bin/version") :out s/trim (s/split #" "))]
{:tag tag
:hash hash
:branch branch
......@@ -92,7 +92,7 @@
(defn mb-version-info
"Return information about the current version of Metabase.
This comes from `resources/version.properties` for prod builds and is fetched from `git` via the `./version` script for dev.
This comes from `resources/version.properties` for prod builds and is fetched from `git` via the `./bin/version` script for dev.
(mb-version) -> {:tag: \"v0.11.1\", :hash: \"afdf863\", :branch: \"about_metabase\", :date: \"2015-10-05\"}"
[]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment