-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b898c1
commit ca3b200
Showing
4 changed files
with
125 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# frozen_string_literal: true | ||
|
||
require_relative "../extractor" | ||
|
||
module Datadog | ||
module CI | ||
module Ext | ||
module Environment | ||
module Providers | ||
# Bitrise: https://bitrise.io/ | ||
# Environment variables docs: https://devcenter.bitrise.io/en/references/available-environment-variables.html | ||
class Bitrise < Extractor | ||
private | ||
|
||
# overridden methods | ||
def provider_name | ||
"bitrise" | ||
end | ||
|
||
def pipeline_id | ||
env["BITRISE_BUILD_SLUG"] | ||
end | ||
|
||
def pipeline_name | ||
env["BITRISE_TRIGGERED_WORKFLOW_ID"] | ||
end | ||
|
||
def pipeline_number | ||
env["BITRISE_BUILD_NUMBER"] | ||
end | ||
|
||
def pipeline_url | ||
env["BITRISE_BUILD_URL"] | ||
end | ||
|
||
def workspace_path | ||
env["BITRISE_SOURCE_DIR"] | ||
end | ||
|
||
def git_repository_url | ||
env["GIT_REPOSITORY_URL"] | ||
end | ||
|
||
def git_commit_sha | ||
env["BITRISE_GIT_COMMIT"] || env["GIT_CLONE_COMMIT_HASH"] | ||
end | ||
|
||
def git_branch | ||
env["BITRISEIO_GIT_BRANCH_DEST"] || env["BITRISE_GIT_BRANCH"] | ||
end | ||
|
||
def git_tag | ||
env["BITRISE_GIT_TAG"] | ||
end | ||
|
||
def git_commit_message | ||
env["BITRISE_GIT_MESSAGE"] | ||
end | ||
|
||
def git_commit_author_name | ||
env["GIT_CLONE_COMMIT_AUTHOR_NAME"] | ||
end | ||
|
||
def git_commit_author_email | ||
env["GIT_CLONE_COMMIT_AUTHOR_EMAIL"] | ||
end | ||
|
||
def git_commit_committer_name | ||
env["GIT_CLONE_COMMIT_COMMITER_NAME"] | ||
end | ||
|
||
def git_commit_committer_email | ||
env["GIT_CLONE_COMMIT_COMMITER_EMAIL"] || env["GIT_CLONE_COMMIT_COMMITER_NAME"] | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
module Datadog | ||
module CI | ||
module Ext | ||
module Environment | ||
module Providers | ||
class Bitrise < Extractor | ||
private | ||
def provider_name: () -> "bitrise" | ||
|
||
def pipeline_id: () -> String? | ||
|
||
def pipeline_name: () -> String? | ||
|
||
def pipeline_number: () -> String? | ||
|
||
def pipeline_url: () -> String? | ||
|
||
def workspace_path: () -> String? | ||
|
||
def git_repository_url: () -> String? | ||
|
||
def git_commit_sha: () -> String? | ||
|
||
def git_branch: () -> String? | ||
|
||
def git_tag: () -> String? | ||
|
||
def git_commit_message: () -> String? | ||
|
||
def git_commit_author_name: () -> String? | ||
|
||
def git_commit_author_email: () -> String? | ||
|
||
def git_commit_committer_name: () -> String? | ||
|
||
def git_commit_committer_email: () -> String? | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |