Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cd_finish #68

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions pipeline/cd_finish
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi

export WORKSPACE

. "${ONE_PIPELINE_PATH}"/pipeline/variables_config
. "${ONE_PIPELINE_PATH}"/internal/pipeline/variables_config
. "${ONE_PIPELINE_PATH}"/tools/retry

cd "$WORKSPACE"
Expand All @@ -31,15 +31,15 @@ GHE_REPO=${INVENTORY_REPO##*/}
curl -H "Accept: application/vnd.github.v3+json" -H "Authorization: token $(get_env git-token)" https://github.ibm.com/api/v3/repos/${GHE_ORG}/${GHE_REPO}/releases -d "{\"tag_name\": \"$(get_env version)\",\"name\": \"$(get_env version)\",\"draft\": false,\"prerelease\": false}"

set_env ibmcloud-api "cloud.ibm.com"
. "${ONE_PIPELINE_PATH}"/security-compliance/scan
. "${ONE_PIPELINE_PATH}"/internal/security-compliance/scan

. "${ONE_PIPELINE_PATH}"/doi/publish_acceptance_tests
. "${ONE_PIPELINE_PATH}"/internal/doi/publish_acceptance_tests

#publish_acceptance_test "$(get_env ACCEPTANCE_TESTS_TASK_NAME)" "$(get_env ACCEPTANCE_TESTS_STEP_NAME)" "com.ibm.acceptance_tests"

# collector_cd
echo "Processing 'build-image-signing' ..."
. "${ONE_PIPELINE_PATH}"/evidence/collector \
. "${ONE_PIPELINE_PATH}"/internal/evidence/collector \
"$(get_env IMAGE_SIGNING_TASK_NAME)" `# task_name` \
"$(get_env IMAGE_SIGNING_STEP_NAME)" `# step_name` \
"sign-artifact" `# stage` \
Expand All @@ -52,7 +52,7 @@ echo "Processing 'build-image-signing' ..."
"" `# artifacts`

echo "Processing 'acceptance-test' ..."
. "${ONE_PIPELINE_PATH}"/evidence/collector \
. "${ONE_PIPELINE_PATH}"/internal/evidence/collector \
"$(get_env ACCEPTANCE_TESTS_TASK_NAME)" `# task_name` \
"$(get_env ACCEPTANCE_TESTS_STEP_NAME)" `# step_name` \
"acceptance-test" `# stage` \
Expand All @@ -66,12 +66,12 @@ echo "Processing 'acceptance-test' ..."

echo -e "\n"

#. "${ONE_PIPELINE_PATH}"/evidence/create_summary "from-every-inventory-entry" "include_cd_evidence"
#. "${ONE_PIPELINE_PATH}"/internal/evidence/create_summary "from-every-inventory-entry" "include_cd_evidence"

#. "${ONE_PIPELINE_PATH}"/evidence/upload_summary
#. "${ONE_PIPELINE_PATH}"/internal/evidence/upload_summary

# collector_cd_final
. "${ONE_PIPELINE_PATH}"/evidence/upload_pipeline_data
. "${ONE_PIPELINE_PATH}"/internal/evidence/upload_pipeline_data

printf "\n\nCollect and upload pipeline logs\n\n" >&2
upload_pipeline_task_logs "cd"
Expand All @@ -81,6 +81,6 @@ upload_pipeline_run_data "cd"

echo -e "\n"

"${ONE_PIPELINE_PATH}/slack/generate_cd_end_message.py" | "${ONE_PIPELINE_PATH}/slack/post_message.py" || true
"${ONE_PIPELINE_PATH}/internal/slack/generate_cd_end_message.py" | "${ONE_PIPELINE_PATH}/internal/slack/post_message.py" || true

#. "${ONE_PIPELINE_PATH}"/pipeline/evaluator_cd
#. "${ONE_PIPELINE_PATH}"/internal/pipeline/evaluator_cd
Loading