Skip to content

Commit

Permalink
Rename jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyCTHsu committed Feb 23, 2024
1 parent b9de660 commit d97099d
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ include:
- remote: https://gitlab-templates.ddbuild.io/apm/packaging.yml
- local: ".gitlab/benchmarks.yml"

# -----------------------------------------------------
# Reliability Environment configuration
# -----------------------------------------------------

variables:
DOWNSTREAM_BRANCH:
value: "master"
Expand Down Expand Up @@ -92,7 +88,7 @@ build-gem:
- tmp
- lib/ddtrace/version.rb

.install-version-dependent-gems:
.install-dependencies:
parallel:
matrix:
- RUBY_VERSION: ["2.7.8", "3.0.6", "3.1.4", "3.2.2"]
Expand All @@ -109,21 +105,21 @@ build-gem:
- tmp
- lib/ddtrace/version.rb

install-version-dependent-gems-amd64:
extends: .install-version-dependent-gems
install-dependencies-amd64:
extends: .install-dependencies
image: $RUBY_CUSTOM_IMAGE_BASE/$RUBY_VERSION-amd64:current
tags: [ "runner:main" ]

install-version-dependent-gems-arm64:
extends: .install-version-dependent-gems
install-dependencies-arm64:
extends: .install-dependencies
image: $RUBY_CUSTOM_IMAGE_BASE/$RUBY_VERSION-arm64:current
tags: [ "arch:arm64" ]

package-amd64:
extends: .package
needs:
- build-gem
- install-version-dependent-gems-amd64
- install-dependencies-amd64
script:
- ls ../pkg
- cp ../lib-injection/host_inject.rb ../tmp
Expand All @@ -134,7 +130,7 @@ package-arm64:
extends: .package-arm
needs:
- build-gem
- install-version-dependent-gems-arm64
- install-dependencies-arm64
script:
- ls ../pkg
- cp ../lib-injection/host_inject.rb ../tmp
Expand Down

0 comments on commit d97099d

Please sign in to comment.