Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gstlal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Duncan Macleod
gstlal
Commits
751a5627
Commit
751a5627
authored
6 years ago
by
Alexander Pace
Browse files
Options
Downloads
Patches
Plain Diff
Adding .gitlab-ci.yml file for documentation.
parent
97aae909
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+53
-0
53 additions, 0 deletions
.gitlab-ci.yml
with
53 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
53
−
0
View file @
751a5627
image
:
ligo/software:stretch
variables
:
DOCKER_DRIVER
:
overlay
BRANCH
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
COMMIT
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_SHA
NIGHTLY
:
$CI_REGISTRY_IMAGE:nightly
TAG
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_TAG
GSTLAL_DIR
:
$CI_PROJECT_DIR/opt/gstlal
before_script
:
#- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
-
export PATH="${GSTLAL_DIR}/bin:${PATH}"
-
export PKG_CONFIG_PATH="${GSTLAL_DIR}/lib/pkgconfig:${GSTLAL_DIR}/lib64/pkgconfig:${PKG_CONFIG_PATH}"
-
export GI_TYPELIB_PATH="${GSTLAL_DIR}/lib/girepository-1.0:${GI_TYPELIB_PATH}"
-
export GST_PLUGIN_PATH="/opt/gstlal/lib/gstreamer-1.0:${GST_PLUGIN_PATH}"
-
export PYTHONPATH="${GSTLAL_DIR}/lib64/python2.7/site-packages:${GSTLAL_DIR}/lib/python2.7/site-packages:${PYTHONPATH}"
-
export GSTLAL_FIR_WHITEN=1
stages
:
-
nightly-pages
pages
:
#Build from the nightly lalsuite container:
image
:
containers.ligo.org/lscsoft/lalsuite:nightly
stage
:
nightly-pages
script
:
-
mkdir public
-
echo "Building GstLAL"
-
apt update
# Pull installation dependencies:
-
apt-get --assume-yes install automake
# Pull GstLAL-specific dependencies:
-
apt-get --assume-yes install doxygen gtk-doc-tools libfftw3-dev libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev liborc-0.4-0 gobject-introspection python-gobject-dev python-numpy python-scipy lscsoft-gds
-
cd gstlal; ./00init.sh; ./configure --prefix=${GSTLAL_DIR}; make; make install
-
cd ../gstlal-ugly; ./00init.sh; ./configure --prefix=${GSTLAL_DIR}; make; make install
-
cd ../gstlal-calibration; ./00init.sh; ./configure --prefix=${GSTLAL_DIR}; make; make install
-
cd ../gstlal-inspiral; ./00init.sh; ./configure --prefix=${GSTLAL_DIR}; make; make install
-
echo "Building Documentation"
-
apt-get --assume-yes install python-sphinx
-
export TMPDIR=tmp/
-
cd ../doc; make html
-
cd ..; cp -rf doc/_build/* public/
dependencies
:
[]
artifacts
:
paths
:
-
public
only
:
-
master@alexander-pace/gstlal
-
pushes
except
:
-
web
\ No newline at end of file
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