Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
Zipr Toolchain
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
Service Desk
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
Open Source Software
Zipr Toolchain
Commits
545f251b
Commit
545f251b
authored
2 years ago
by
Jason Hiser
Browse files
Options
Downloads
Patches
Plain Diff
Update .gitlab-ci.yml file. Correct syntax, organize pipeline parallelism
parent
d43d9e23
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!36
Update libEHP to test for update of ELFIO.
Pipeline
#20392
failed
2 years ago
Stage: build
Stage: protect_bins
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+69
-51
69 additions, 51 deletions
.gitlab-ci.yml
with
69 additions
and
51 deletions
.gitlab-ci.yml
+
69
−
51
View file @
545f251b
...
...
@@ -13,56 +13,6 @@ stages:
-
deploy
#
# Cleaning, build, test
#
.test
:
&test
needs
:
[]
stage
:
clean
script
:
-
./cicd_testing/do-clean.sh
-
./cicd_testing/do-build.sh
-
./cicd_testing/eh-tests.sh
-
./cicd_testing/builtin-xforms.sh
-
./cicd_testing/elfdep.sh
test-arm32
:
needs
:
[]
stage
:
clean
script
:
-
./cicd_testing/do-clean.sh
-
./cicd_testing/do-build.sh
test-arm64
:
needs
:
[]
stage
:
clean
script
:
-
./cicd_testing/do-clean.sh
-
./cicd_testing/do-build.sh
-
./cicd_testing/builtin-xforms.sh
# per os items
test-ubuntu18
:
<<
:
*test
tags
:
-
ubuntu18
test-coss9
:
<<
:
*test
tags
:
-
coss9
test-ubuntu20
:
<<
:
*test
tags
:
-
ubuntu20
test-ubuntu22
:
<<
:
*test
tags
:
-
ubuntu22
#
# gather artifacts and ship them tox 86 boxes
...
...
@@ -114,11 +64,12 @@ protect-arm-ubuntu22:
stage
:
test
script
:
-
./cicd_testing/do-test-bins.sh
artifacts
:
artifacts
:
expire_in
:
1 day
paths
:
-
artifacts/
test-bins-arm32
:
<<
:
*test_arm_bins
tags
:
...
...
@@ -129,11 +80,78 @@ test-bins-arm64:
tags
:
-
arm64
#
# Cleaning, build, test
#
.test
:
&test
needs
:
[]
stage
:
test
script
:
-
./cicd_testing/do-clean.sh
-
./cicd_testing/do-build.sh
-
./cicd_testing/eh-tests.sh
-
./cicd_testing/builtin-xforms.sh
-
./cicd_testing/elfdep.sh
#
# gather artifacts and ship them tox 86 boxes
#
.test_arm_bins
:
&test_arm_bins
needs
:
[
protect-arm-ubuntu22
]
stage
:
test
script
:
-
./cicd_testing/do-test-bins.sh
artifacts
:
expire_in
:
1 day
paths
:
-
artifacts/
test-arm32
:
needs
:
[]
stage
:
test
script
:
-
./cicd_testing/do-clean.sh
-
./cicd_testing/do-build.sh
test-arm64
:
needs
:
[]
stage
:
test
script
:
-
./cicd_testing/do-clean.sh
-
./cicd_testing/do-build.sh
-
./cicd_testing/builtin-xforms.sh
# per os items
test-ubuntu18
:
<<
:
*test
tags
:
-
ubuntu18
test-coss9
:
<<
:
*test
tags
:
-
coss9
test-ubuntu20
:
<<
:
*test
tags
:
-
ubuntu20
test-ubuntu22
:
<<
:
*test
tags
:
-
ubuntu22
#
# deploy a docker image
#
deploy-u22
:
needs
:
[
test-coss9
,
test-ubuntu18
,
test-ubuntu20
,
test-ubuntu22
,
test-arm32
,
test-arm64
,
test-bins-arm32
,
test-bins-arm64
]
stage
:
deploy
script
:
-
./cicd_testing/do-clean.sh
...
...
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