Skip to content

Commit

Permalink
dependency fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
randomanderson committed Nov 13, 2024
1 parent b7c52ef commit fb513e9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ onboarding_nodejs:
extends: .base_job_onboarding_system_tests
stage: nodejs_tracer
allow_failure: true
dependencies: []
needs: []
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" && ($ONLY_TEST_LIBRARY == "" || $ONLY_TEST_LIBRARY == "nodejs")
when: always
Expand Down Expand Up @@ -81,7 +81,7 @@ onboarding_java:
extends: .base_job_onboarding_system_tests
stage: java_tracer
allow_failure: true
dependencies: []
needs: []
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" && ($ONLY_TEST_LIBRARY == "" || $ONLY_TEST_LIBRARY == "java")
when: always
Expand Down Expand Up @@ -116,7 +116,7 @@ onboarding_python:
extends: .base_job_onboarding_system_tests
stage: python_tracer
allow_failure: true
dependencies: []
needs: []
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" && ($ONLY_TEST_LIBRARY == "" || $ONLY_TEST_LIBRARY == "python")
when: always
Expand Down Expand Up @@ -152,7 +152,7 @@ onboarding_dotnet:
extends: .base_job_onboarding_system_tests
stage: dotnet_tracer
allow_failure: true
dependencies: []
needs: []
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" && ($ONLY_TEST_LIBRARY == "" || $ONLY_TEST_LIBRARY == "dotnet")
when: always
Expand Down Expand Up @@ -184,7 +184,7 @@ onboarding_ruby:
extends: .base_job_onboarding_system_tests
stage: ruby_tracer
allow_failure: true
dependencies: []
needs: []
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" && ($ONLY_TEST_LIBRARY == "" || $ONLY_TEST_LIBRARY == "ruby")
when: always
Expand Down Expand Up @@ -216,7 +216,7 @@ onboarding_php:
extends: .base_job_onboarding_system_tests
stage: php_tracer
allow_failure: true
dependencies: []
needs: []
rules:
- if: $CI_PIPELINE_SOURCE == "schedule" && ($ONLY_TEST_LIBRARY == "" || $ONLY_TEST_LIBRARY == "php")
when: always
Expand Down Expand Up @@ -337,7 +337,7 @@ generate_docker_ssi_pipeline:
image: 486234852809.dkr.ecr.us-east-1.amazonaws.com/ci/test-infra-definitions/runner:a58cc31c
stage: child_pipelines
tags: ["arch:amd64"]
dependencies: []
needs: []
script:
- python utils/docker_ssi/docker_ssi_matrix_builder.py --format yaml --output-file ssi_pipeline.yml
artifacts:
Expand Down
8 changes: 7 additions & 1 deletion utils/docker_ssi/docker_ssi_matrix_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ def generate_gitlab_pipeline():
"timeout 2700s ./run.sh DOCKER_SSI --ssi-weblog \"$weblog\" --ssi-library \"$TEST_LIBRARY\" --ssi-base-image \"$base_image\" --ssi-arch \"$arch\" --ssi-installable-runtime \"$installable_runtime\""
],
"rules": [
{ "when": "manual" }
{
"when": "manual",
"allow_failure": True
}
],
"artifacts": {
"when": "always",
Expand Down Expand Up @@ -50,6 +53,9 @@ def generate_gitlab_pipeline():
"extends": ".base_ssi_job",
"tags": ["runner:$runner"],
"stage": language,
"variables": {
"TEST_LIBRARY": language,
},
"parallel": {
"matrix": matrix
}
Expand Down

0 comments on commit fb513e9

Please sign in to comment.