Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zmap
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
0
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
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
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
ensembl-gh-mirror
zmap
Commits
e2d4db22
Commit
e2d4db22
authored
16 years ago
by
rds
Browse files
Options
Downloads
Patches
Plain Diff
request tracker stuff
parent
ba370b8a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
scripts/build_bootstrap.sh
+11
-6
11 additions, 6 deletions
scripts/build_bootstrap.sh
scripts/build_config.sh
+6
-1
6 additions, 1 deletion
scripts/build_config.sh
scripts/getRTtickets
+2
-2
2 additions, 2 deletions
scripts/getRTtickets
with
19 additions
and
9 deletions
scripts/build_bootstrap.sh
+
11
−
6
View file @
e2d4db22
...
...
@@ -121,6 +121,8 @@ EOF
# This both checks out ZMap module and sets variables for use later by this script!
.
./
$gen_checkout_script
||
{
echo
"Failed to load ./
$gen_checkout_script
"
;
exit
1
;
}
# N.B. $gen_checkout_script is now an absolute path
if
[
"x
$ZMAP_MASTER_BUILD_DEVELOPMENT_DIR
"
!=
"x"
]
;
then
# Here we copy from the development dir to the checked out one.
_checkout_message_out
"*** WARNING: Developing! Using
$ZMAP_MASTER_BUILD_DEVELOPMENT_DIR
***"
...
...
@@ -166,6 +168,15 @@ ZMAP_RELEASE_VERSION=$($SCRIPTS_DIR/versioner \
zmap_message_out
"*** INFORMATION: Version of zmap being built is
$ZMAP_RELEASE_VERSION
***"
# This needs to happen _before_ building and _before_ possibly freezing the cvs
# as we lock the release notes to the binary using a #define
if
[
"x
$ZMAP_MASTER_RT_RELEASE_NOTES
"
==
"x
$ZMAP_TRUE
"
]
;
then
$SCRIPTS_DIR
/zmap_build_rt_release_notes.sh
||
\
zmap_message_exit
"Failed to build release notes from Request Tracker"
fi
# If requested, tag cvs to 'freeze' the code.
# Logic is: To tag using the version _in_ cvs. This would have been
# incremented the last time this script was run!
...
...
@@ -318,12 +329,6 @@ if [ "x$ZMAP_MASTER_CVS_RELEASE_NOTES" == "x$ZMAP_TRUE" ]; then
$SCRIPTS_DIR
/zmap_build_cvs_release_notes.sh
||
zmap_message_exit
"Failed to successfully build release notes from cvs."
fi
if
[
"x
$ZMAP_MASTER_RT_RELEASE_NOTES
"
==
"x
$ZMAP_TRUE
"
]
;
then
zmap_message_err
"Need to code release notes bit..."
$SCRIPTS_DIR
/zmap_build_rt_release_notes.sh
||
zmap_message_exit
"Failed to build release notes from Request Tracker"
fi
if
[
"x
$ZMAP_MASTER_BUILD_DOCS
"
==
"x
$ZMAP_TRUE
"
]
;
then
zmap_message_out
"Running
$SCRIPTS_DIR
/zmap_make_docs
$ZMAP_BUILD_CONTAINER
..."
...
...
This diff is collapsed.
Click to expand it.
scripts/build_config.sh
+
6
−
1
View file @
e2d4db22
...
...
@@ -96,7 +96,7 @@ ZMAP_MASTER_BUILD_DOCS=no
ZMAP_MASTER_BUILD_DOXYGEN_DOCS
=
no
ZMAP_MASTER_BUILD_DIST
=
yes
ZMAP_MASTER_CVS_RELEASE_NOTES
=
no
ZMAP_MASTER_RT_RELEASE_NOTES
=
no
ZMAP_MASTER_RT_RELEASE_NOTES
=
yes
ZMAP_MASTER_DOCS2WEB
=
yes
ZMAP_MASTER_WEBPUBLISH
=
no
ZMAP_MASTER_REMOVE_FOLDER
=
yes
...
...
@@ -109,6 +109,11 @@ ZMAP_MAKE_INSTALL=yes
ZMAP_RELEASES_DIR
=
~zmap/BUILDS
ZMAP_ACEDB_RELEASE_CONTAINER
=
~acedb
ZMAP_ACEDB_BINARIES
=
'tace xace sgifaceserver giface makeUserPasswd blixem dotter xremote'
ZMAP_ACEDB_VERSION_DIR
=
4
ZMAP_RELEASE_NOTES_TIMESTAMP
=
LAST_RELEASE_DATE.txt
ZMAP_VERSION_HEADER
=
zmapUtils_P.h
ZMAP_WEBPAGE_HEADER
=
zmapWebPages.h
WEBPUBLISH
=
webpublish
ENSCRIPT_EXE
=
enscript
...
...
This diff is collapsed.
Click to expand it.
scripts/getRTtickets
+
2
−
2
View file @
e2d4db22
...
...
@@ -15,8 +15,8 @@ usage=" $0 <date> <list of queues>
queues should be a blank separated list of valid RT queues.
"
[
"x
$start_date
"
!=
"x"
]
||
start_date
=
$1
start_date
=
$1
if
[
-z
"
$start_date
"
]
;
then
echo
$usage
exit
1
...
...
@@ -24,7 +24,7 @@ fi
shift
# A list of blank separated queues is allowed.
OPS_QUEUES
=
"
$*
"
[
"x
$OPS_QUEUES
"
!=
"x"
]
||
OPS_QUEUES
=
"
$*
"
if
[
-z
"
$OPS_QUEUES
"
]
;
then
echo
$usage
exit
1
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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