Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
31c00358
Commit
31c00358
authored
9 years ago
by
Tom Robinson
Browse files
Options
Downloads
Patches
Plain Diff
Move version and dox Makefile to scripts in bin/
parent
fd6d628a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
bin/build
+2
-2
2 additions, 2 deletions
bin/build
bin/dox
+20
-0
20 additions, 0 deletions
bin/dox
bin/start
+8
-2
8 additions, 2 deletions
bin/start
bin/version
+1
-1
1 addition, 1 deletion
bin/version
src/metabase/config.clj
+2
-2
2 additions, 2 deletions
src/metabase/config.clj
with
33 additions
and
7 deletions
bin/build
+
2
−
2
View file @
31c00358
#!
/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
'
...
"
...
...
This diff is collapsed.
Click to expand it.
Makefile
→
bin/dox
100644 → 100755
+
20
−
0
View file @
31c00358
.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
This diff is collapsed.
Click to expand it.
bin/start
+
8
−
2
View file @
31c00358
#!/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
"
...
...
This diff is collapsed.
Click to expand it.
version
→
bin/
version
+
1
−
1
View file @
31c00358
#!
/bin/bash
#!
/usr
/bin/
env
bash
# Return the version string used to describe this version of Metabase.
...
...
This diff is collapsed.
Click to expand it.
src/metabase/config.clj
+
2
−
2
View file @
31c00358
...
...
@@ -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\"}"
[]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment