Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
chaos_bundle_compilation
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
chaos-lnf-control
chaos_bundle_compilation
Commits
d756504d
There was a problem fetching the pipeline summary.
Commit
d756504d
authored
7 years ago
by
Andrea Michelotti
Browse files
Options
Downloads
Patches
Plain Diff
attempt to make in parallel
parent
a39f6c18
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+65
-18
65 additions, 18 deletions
.gitlab-ci.yml
with
65 additions
and
18 deletions
.gitlab-ci.yml
+
65
−
18
View file @
d756504d
stages
:
stages
:
-
ubuntu1604_experimental_x86_64
-
build
-
ubuntu1604_experimental_test_x86_64
-
test
-
ubuntu1404_experimental_x86_64
-
ubuntu1404_experimental_test_x86_64
-
build_arm_experimental_linux26
before_script
:
before_script
:
...
@@ -23,8 +21,9 @@ before_script:
...
@@ -23,8 +21,9 @@ before_script:
ubuntu1604_experimental_x86_64
:
ubuntu1604_experimental_x86_64
:
tags
:
tags
:
-
shared
-
chaos
-
chaos
stage
:
u
bu
ntu1604_experimental_x86_64
stage
:
bu
ild
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1604
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1604
script
:
script
:
-
mkdir chaos_bundle
-
mkdir chaos_bundle
...
@@ -33,28 +32,30 @@ ubuntu1604_experimental_x86_64:
...
@@ -33,28 +32,30 @@ ubuntu1604_experimental_x86_64:
-
repo sync
-
repo sync
-
cmake -DCHAOS_WAN=ON -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR .
-
cmake -DCHAOS_WAN=ON -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR .
-
make -j 8 install
-
make -j 8 install
-
tar cfz chaos-distrib-$CI_
PIPELINE_ID
.tar.gz -C $INSTALL_DIR/.. chaos-distrib-$CI_
PIPELINE_ID
-
tar cfz chaos-distrib-$CI_
JOB_NAME
.tar.gz -C $INSTALL_DIR/.. chaos-distrib-$CI_
JOB_NAME
artifacts
:
artifacts
:
paths
:
paths
:
-
chaos_bundle/chaos-distrib-$CI_
PIPELINE_ID
.tar.gz
-
chaos_bundle/chaos-distrib-$CI_
JOB_NAME
.tar.gz
expire_in
:
1 week
expire_in
:
1 week
ubuntu1604_experimental_test_x86_64
:
ubuntu1604_experimental_test_x86_64
:
tags
:
tags
:
-
shared
-
chaos
-
chaos
stage
:
ubuntu1604_experimental_test_x86_64
stage
:
test
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1604
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1604
script
:
script
:
-
/tmp/chaos_start.sh
-
/tmp/chaos_start.sh
-
tar xfz chaos-distrib-
$CI_PIPELINE_ID
.tar.gz
-
tar xfz chaos-distrib-
ubuntu1604_experimental_x86_64
.tar.gz
-
cd chaos-distrib-
$CI_PIPELINE_ID
-
cd chaos-distrib-
ubuntu1604_experimental_x86_64
-
source chaos_env.sh
-
source chaos_env.sh
-
./tools/chaos_test.sh .
-
./tools/chaos_test.sh .
ubuntu1404_experimental_x86_64
:
ubuntu1404_experimental_x86_64
:
tags
:
tags
:
-
shared
-
chaos
-
chaos
stage
:
u
bu
ntu1404_experimental_x86_64
stage
:
bu
ild
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1404
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1404
script
:
script
:
-
mkdir chaos_bundle
-
mkdir chaos_bundle
...
@@ -63,21 +64,21 @@ ubuntu1404_experimental_x86_64:
...
@@ -63,21 +64,21 @@ ubuntu1404_experimental_x86_64:
-
repo sync
-
repo sync
-
cmake -DCHAOS_WAN=ON -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR .
-
cmake -DCHAOS_WAN=ON -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR .
-
make -j 4 install
-
make -j 4 install
-
tar cfz chaos-distrib-$CI_
PIPELINE_ID
.tar.gz -C $INSTALL_DIR/.. chaos-distrib-$CI_
PIPELINE_ID
-
tar cfz chaos-distrib-$CI_
JOB_NAME
.tar.gz -C $INSTALL_DIR/.. chaos-distrib-$CI_
JOB_NAME
artifacts
:
artifacts
:
paths
:
paths
:
-
chaos_bundle/chaos-distrib-$CI_
PIPELINE_ID
.tar.gz
-
chaos_bundle/chaos-distrib-$CI_
JOB_NAME
.tar.gz
expire_in
:
1 week
expire_in
:
1 week
ubuntu1404_experimental_test_x86_64
:
ubuntu1404_experimental_test_x86_64
:
tags
:
tags
:
-
shared
-
chaos
-
chaos
stage
:
ubuntu1404_experimental_test_x86_64
stage
:
test
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1404
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1404
script
:
script
:
-
/tmp/chaos_start.sh
-
/tmp/chaos_start.sh
-
scp chaosweb@opensource.lnf.infn.it:/var/www/html/binary/chaos/x86_64/chaos-distrib-ubuntu1404_experimental_x86_64.tar.gz .
-
tar xfz chaos-distrib-ubuntu1404_experimental_x86_64.tar.gz
-
tar xfz chaos-distrib-ubuntu1404_experimental_x86_64.tar.gz
-
cd chaos-distrib-ubuntu1404_experimental_x86_64
-
cd chaos-distrib-ubuntu1404_experimental_x86_64
-
source chaos_env.sh
-
source chaos_env.sh
...
@@ -86,8 +87,9 @@ ubuntu1404_experimental_test_x86_64:
...
@@ -86,8 +87,9 @@ ubuntu1404_experimental_test_x86_64:
build_arm_experimental_linux26
:
build_arm_experimental_linux26
:
tags
:
tags
:
-
shared
-
shared
stage
:
build_arm_experimental_linux26
-
chaos
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1404
stage
:
build
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1604
script
:
script
:
-
mkdir chaos_bundle
-
mkdir chaos_bundle
-
cd chaos_bundle
-
cd chaos_bundle
...
@@ -96,4 +98,49 @@ build_arm_experimental_linux26:
...
@@ -96,4 +98,49 @@ build_arm_experimental_linux26:
-
export PATH=/usr/local/chaos/gcc-arm-infn-linux26/bin/:$PATH
-
export PATH=/usr/local/chaos/gcc-arm-infn-linux26/bin/:$PATH
-
cmake . -DCHAOS_STATIC=ON -DCHAOS_TARGET=arm-linux-2.6 -DCHAOS_CDS=OFF -DCHAOS_MDS=OFF -DCHAOS_WAN=OFF -DCHAOS_EXAMPLES=OFF -DCHAOS_ENABLE_C11=OFF -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR
-
cmake . -DCHAOS_STATIC=ON -DCHAOS_TARGET=arm-linux-2.6 -DCHAOS_CDS=OFF -DCHAOS_MDS=OFF -DCHAOS_WAN=OFF -DCHAOS_EXAMPLES=OFF -DCHAOS_ENABLE_C11=OFF -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR
-
make -j 4 install
-
make -j 4 install
-
tar cfz chaos-distrib-$CI_JOB_NAME.tar.gz -C $INSTALL_DIR/.. chaos-distrib-$CI_JOB_NAME
artifacts
:
paths
:
-
chaos_bundle/chaos-distrib-$CI_JOB_NAME.tar.gz
expire_in
:
1 week
build_i686_experimental_static_linux26
:
tags
:
-
shared
-
chaos
stage
:
build
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1604
script
:
-
mkdir chaos_bundle
-
cd chaos_bundle
-
repo init -u git@baltig.infn.it:chaos-lnf-control/chaos_repo_bundle.git -b experimental
-
repo sync
-
export PATH=/usr/local/chaos/i686-nptl-linux-gnu/bin/:$PATH
-
cmake . -DCHAOS_STATIC=ON -DCHAOS_TARGET=i686-linux26 -DCHAOS_CDS=OFF -DCHAOS_MDS=OFF -DCHAOS_WAN=OFF -DCHAOS_EXAMPLES=OFF -DCHAOS_ENABLE_C11=OFF -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR
-
make -j 4 install
-
tar cfz chaos-distrib-$CI_JOB_NAME.tar.gz -C $INSTALL_DIR/.. chaos-distrib-$CI_JOB_NAME
artifacts
:
paths
:
-
chaos_bundle/chaos-distrib-$CI_JOB_NAME.tar.gz
expire_in
:
1 week
build_i686_experimental_dynamic_linux26
:
tags
:
-
shared
-
chaos
stage
:
build
image
:
baltig.infn.it:4567/amichelo/chaos_bundle_compilation:1604
script
:
-
mkdir chaos_bundle
-
cd chaos_bundle
-
repo init -u git@baltig.infn.it:chaos-lnf-control/chaos_repo_bundle.git -b experimental
-
repo sync
-
export PATH=/usr/local/chaos/i686-nptl-linux-gnu/bin/:$PATH
-
cmake . -DCHAOS_TARGET=i686-linux26 -DCHAOS_CDS=OFF -DCHAOS_MDS=OFF -DCHAOS_WAN=OFF -DCHAOS_EXAMPLES=OFF -DCHAOS_ENABLE_C11=OFF -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR
-
make -j 4 install
-
tar cfz chaos-distrib-$CI_JOB_NAME.tar.gz -C $INSTALL_DIR/.. chaos-distrib-$CI_JOB_NAME
artifacts
:
paths
:
-
chaos_bundle/chaos-distrib-$CI_JOB_NAME.tar.gz
expire_in
:
1 week
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