How to retrieve which commit hashes are included in a expired or deleted Bamboo build

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。

Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Fisheye および Crucible は除く

プラットフォームについて: Data Center - この記事は、Data Center プラットフォームのアトラシアン製品に適用されます。

このナレッジベース記事は製品の Data Center バージョン用に作成されています。Data Center 固有ではない機能の Data Center ナレッジベースは、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。サーバー*製品のサポートは 2024 年 2 月 15 日に終了しました。サーバー製品を利用している場合は、アトラシアンのサーバー製品のサポート終了のお知らせページにて移行オプションをご確認ください。

*Fisheye および Crucible は除く

要約

After a build result is expired or deleted from Bamboo, it's not possible to retrieve which were the commits of those builds.

However if the build is consuming a Bitbucket repository the information is still available in Bitbucket's database.

環境

This information available only for Bamboo plans that consume Bitbucket server/DC repositories.

ソリューション


Using the following SQL statement it's possible to retrieve all builds that contained a specific commitID:

SELECT
    BBS.commit_id,
    BBS.name,
    BBS.build_key,
    BBS.build_number,
    BBS.created_date,
    BBS.updated_date,
    BBS.ref
FROM
    public.bb_build_status BBS
WHERE
    BBS.commit_id LIKE '%6afb46fde71%' 

(info) Substitute 6afb46fde71 with the commit id and the results will display all the builds associated with that commit id.

Using the following SQL statement it's possible to retrieve all commits that contained a specific build key:

SELECT
    BBS.commit_id,
    BBS.name,
    BBS.build_key,
    BBS.build_number,
    BBS.created_date,
    BBS.updated_date,
    BBS.ref
FROM
    public.bb_build_status BBS
WHERE
BBS.build_key LIKE '%PLAN-KEY%'

(info) Substitute PLAN-KEY with the plan key



最終更新日: 2022 年 1 月 27 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.