Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Oniro
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor 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
Eclipse Projects
Oniro Core
Oniro
Merge requests
!224
oniro-ci: Add variable to specify oe-core path
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
oniro-ci: Add variable to specify oe-core path
landgraf/oniro:nuts_pipeline
into
kirkstone
Overview
34
Commits
1
Pipelines
2
Changes
2
Merged
Pavel Zhukov
requested to merge
landgraf/oniro:nuts_pipeline
into
kirkstone
2 years ago
Overview
8
Commits
1
Pipelines
2
Changes
2
Expand
Signed-off-by: Pavel Zhukov
pavel.zhukov@huawei.com
Edited
2 years ago
by
Pavel Zhukov
0
0
Merge request reports
Compare
kirkstone
version 30
7b754de4
2 years ago
version 29
e79188ac
2 years ago
version 28
e2851ffb
2 years ago
version 27
55ae682e
2 years ago
version 26
d4b9cf62
2 years ago
version 25
deda06b3
2 years ago
version 24
43b0377b
2 years ago
version 23
a55cce51
2 years ago
version 22
5173041a
2 years ago
version 21
8207913b
2 years ago
version 20
b12501ab
2 years ago
version 19
5ace98d5
2 years ago
version 18
cef2bb9d
2 years ago
version 17
3d6f0a34
2 years ago
version 16
57995d66
2 years ago
version 15
ab9acf60
2 years ago
version 14
c21056cf
2 years ago
version 13
1162c125
2 years ago
version 12
55a0928c
2 years ago
version 11
ad568b81
2 years ago
version 10
4970f83e
2 years ago
version 9
5ae69804
2 years ago
version 8
973b7a0d
2 years ago
version 7
ab493e33
2 years ago
version 6
3640052e
2 years ago
version 5
b70e0b4e
2 years ago
version 4
48e35b14
2 years ago
version 3
f7e32ad6
2 years ago
version 2
b7137cb2
2 years ago
version 1
f8a0c1cc
2 years ago
kirkstone (base)
and
version 26
latest version
3f6a9c29
1 commit,
2 years ago
version 30
7b754de4
1 commit,
2 years ago
version 29
e79188ac
1 commit,
2 years ago
version 28
e2851ffb
1 commit,
2 years ago
version 27
55ae682e
1 commit,
2 years ago
version 26
d4b9cf62
1 commit,
2 years ago
version 25
deda06b3
1 commit,
2 years ago
version 24
43b0377b
1 commit,
2 years ago
version 23
a55cce51
1 commit,
2 years ago
version 22
5173041a
1 commit,
2 years ago
version 21
8207913b
1 commit,
2 years ago
version 20
b12501ab
1 commit,
2 years ago
version 19
5ace98d5
1 commit,
2 years ago
version 18
cef2bb9d
1 commit,
2 years ago
version 17
3d6f0a34
1 commit,
2 years ago
version 16
57995d66
1 commit,
2 years ago
version 15
ab9acf60
1 commit,
2 years ago
version 14
c21056cf
1 commit,
2 years ago
version 13
1162c125
1 commit,
2 years ago
version 12
55a0928c
1 commit,
2 years ago
version 11
ad568b81
2 commits,
2 years ago
version 10
4970f83e
2 commits,
2 years ago
version 9
5ae69804
2 commits,
2 years ago
version 8
973b7a0d
2 commits,
2 years ago
version 7
ab493e33
2 commits,
2 years ago
version 6
3640052e
1 commit,
2 years ago
version 5
b70e0b4e
1 commit,
2 years ago
version 4
48e35b14
1 commit,
2 years ago
version 3
f7e32ad6
1 commit,
2 years ago
version 2
b7137cb2
1 commit,
2 years ago
version 1
f8a0c1cc
1 commit,
2 years ago
2 files
+
28
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
.oniro-ci/build-generic.yaml
+
14
−
0
Options
@@ -58,6 +58,20 @@
@@ -58,6 +58,20 @@
fi
fi
set +x
set +x
-
|
set -x
if [ -n "$ONIRO_CI_OECORE_BRANCH" ]; then
if [ -n "$ONIRO_CI_OECORE_REPO" ]; then
echo "CI: Using oe-core from '$ONIRO_CI_OECORE_REPO':'$ONIRO_CI_OECORE_BRANCH' "
( cd "oe-core" && git remote add oecore-nut "$ONIRO_CI_OECORE_REPO" \
&& git fetch oecore-nut && git checkout oecore-nut/"$ONIRO_CI_OECORE_BRANCH" );
else
echo "CI: Using oe-core branch: '$ONIRO_CI_OECORE_BRANCH' "
( cd "oe-core" && git fetch && git checkout "$ONIRO_CI_OECORE_BRANCH" );
fi;
fi;
set +x
script
:
script
:
# Reload the value of SCRATCH_DIR set in the before_script phase. Those run
# Reload the value of SCRATCH_DIR set in the before_script phase. Those run
# in separate shell processes and do not share environment variables.
# in separate shell processes and do not share environment variables.
Loading