Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Project Juggler
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
EIC
Project Juggler
Merge requests
!27
Using the container build as the build test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Using the container build as the build test
ci_fix
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Whitney Armstrong
requested to merge
ci_fix
into
master
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
eliminated build test
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
7a190205
1 commit,
4 years ago
1 file
+
11
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
11
−
11
Options
@@ -6,20 +6,20 @@ default:
-
build/
stages
:
-
build
#
- build
-
container
-
run
compile
:
stage
:
build
tags
:
-
silicon
before_script
:
-
pwd && ls -lrth
script
:
-
export homedir=$(pwd) && pwd && cd /tmp && git clone --depth=1 https://eicweb.phy.anl.gov/EIC/NPDet.git && mkdir build && cd build && cmake ../NPDet/. && make -j20 install
-
cd /tmp && git clone --depth=1 https://eicweb.phy.anl.gov/EIC/eicd.git && mkdir eicd_build && cd eicd_build && cmake ../eicd/. && make -j20 install
-
cd $homedir && ls -lrth && mkdir build && cd build && cmake .. && make -j10
#
compile
:
#
stage: build
#
tags:
#
- silicon
#
before_script:
#
- pwd && ls -lrth
#
script:
#
- export homedir=$(pwd) && pwd && cd /tmp && git clone --depth=1 https://eicweb.phy.anl.gov/EIC/NPDet.git && mkdir build && cd build && cmake ../NPDet/. && make -j20 install
#
- cd /tmp && git clone --depth=1 https://eicweb.phy.anl.gov/EIC/eicd.git && mkdir eicd_build && cd eicd_build && cmake ../eicd/. && make -j20 install
#
- cd $homedir && ls -lrth && mkdir build && cd build && cmake .. && make -j10
#run_example:
# stage: run
Loading