Skip to content
Snippets Groups Projects
Commit 4c871b77 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

Cleanup building, report artifacts always

parent 513168d5
No related branches found
No related tags found
1 merge request!16Resolve "add artifacts always"
Pipeline #18848 passed
......@@ -6,154 +6,54 @@ after_script:
- "echo Test Complete."
stages:
- clean
- build
- test
- fuzz
- deploy
#
# Cleaning
#
do-clean-ubuntu22:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- ubuntu22
do-clean-ubuntu20:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- ubuntu20
do-clean-ubuntu18:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- ubuntu18
do-clean-arm32:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- arm32
do-clean-arm64:
stage: clean
script:
- ./cicd_testing/do-clean.sh
tags:
- arm64
do-clean-centos76:
stage: clean
.test: &do-test
stage: test
script:
- ./cicd_testing/do-clean.sh
tags:
- centos76
#
# Building
#
do-build-ubuntu22:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- ubuntu22
do-build-ubuntu20:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- ubuntu20
do-build-ubuntu18:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- ubuntu18
do-build-arm64:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- arm64
do-build-arm32:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- arm32
do-build-centos76:
stage: build
script:
- ./cicd_testing/do-build.sh
tags:
- centos76
- ./cicd_testing/do-test.sh
#
# Testing
# test
#
do-test-ubuntu22:
stage: test
script:
- ./cicd_testing/do-test.sh
ubuntu22:
<<: *do-test
tags:
- ubuntu22
do-test-ubuntu20:
stage: test
script:
- ./cicd_testing/do-test.sh
ubuntu20:
<<: *do-test
tags:
- ubuntu20
do-test-ubuntu18:
stage: test
ubuntu18:
<<: *do-test
script:
- ./cicd_testing/do-test.sh
- ./cicd_testing/do-clean.sh
tags:
- ubuntu18
do-test-arm32:
stage: test
script:
- ./cicd_testing/do-test.sh
arm32:
<<: *do-test
tags:
- arm32
do-test-arm64:
stage: test
script:
- ./cicd_testing/do-test.sh
arm64:
<<: *do-test
tags:
- arm64
do-test-centos76:
stage: test
script:
- ./cicd_testing/do-test.sh
centos76:
<<: *do-test
tags:
- centos76
#
# Fuzz
#
......@@ -164,13 +64,14 @@ fuzz:
artifacts:
paths:
- artifacts
when: always
tags:
- fuzz
#
# Deploy
#
do-deploy-ubuntu22:
ubuntu22:
stage: deploy
script:
- ./cicd_testing/do-deploy.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment