Skip to content

Commit

Permalink
Added build job for jammy
Browse files Browse the repository at this point in the history
  • Loading branch information
heikohimu committed Oct 14, 2022
1 parent b965a15 commit 27ff787
Showing 1 changed file with 28 additions and 1 deletion.
29 changes: 28 additions & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ variables:
- amd64
- docker

.amd64_jammy_t: &amd64_jammy_job
image: registry.roboception.de/tools/docker_images:jammy-buildimage
tags:
- amd64
- docker

#############
# Templates
#############
Expand Down Expand Up @@ -90,7 +96,7 @@ variables:
#### Jobs ####
##############
gen_dox:
<<: *amd64_bionic_job
<<: *amd64_focal_job
variables:
TESTING_DEBS: "true"
stage: deploy
Expand Down Expand Up @@ -120,6 +126,10 @@ test:focal:amd64:
<<: *amd64_focal_job
extends: .test_latest

test:jammy:amd64:
<<: *amd64_jammy_job
extends: .test_latest

# Test against stable (is allowed to fail)
##########################################
test_stable:bionic:amd64:
Expand All @@ -130,6 +140,10 @@ test_stable:focal:amd64:
<<: *amd64_focal_job
extends: .test_stable

test_stable:jammy:amd64:
<<: *amd64_jammy_job
extends: .test_stable

# Deploy testing (only on master)
#################################
package_testing:bionic:amd64:
Expand All @@ -140,6 +154,10 @@ package_testing:focal:amd64:
<<: *amd64_focal_job
extends: .package_testing

package_testing:jammy:amd64:
<<: *amd64_jammy_job
extends: .package_testing

################
# Stable builds
################
Expand All @@ -154,6 +172,10 @@ test_release:focal:amd64:
<<: *amd64_focal_job
extends: .test_release

test_release:jammy:amd64:
<<: *amd64_jammy_job
extends: .test_release

# Deploy stable (only for releases, version tags)
#################################################
package_stable:bionic:amd64:
Expand All @@ -163,3 +185,8 @@ package_stable:bionic:amd64:
package_stable:focal:amd64:
<<: *amd64_focal_job
extends: .package_stable

package_stable:jammy:amd64:
<<: *amd64_jammy_job
extends: .package_stable

0 comments on commit 27ff787

Please sign in to comment.