Skip to content

Commit

Permalink
Merge pull request #11 from DataDog/anmarchenko/fix_ci_specs
Browse files Browse the repository at this point in the history
Fix Datadog::CI::Environment to support the new CI specs
  • Loading branch information
anmarchenko committed Aug 28, 2023
2 parents 3ac6c2c + 7169f7e commit 038b95c
Show file tree
Hide file tree
Showing 14 changed files with 1,072 additions and 1,019 deletions.
15 changes: 10 additions & 5 deletions lib/datadog/ci/ext/environment.rb
Original file line number Diff line number Diff line change
Expand Up @@ -165,18 +165,23 @@ def extract_azure_pipelines(env)
end

def extract_bitbucket(env)
url = "https://bitbucket.org/#{env["BITBUCKET_REPO_FULL_NAME"]}/addon/pipelines/home#" \
pipeline_url = "https://bitbucket.org/#{env["BITBUCKET_REPO_FULL_NAME"]}/addon/pipelines/home#" \
"!/results/#{env["BITBUCKET_BUILD_NUMBER"]}"

repository_url = filter_sensitive_info(
env["BITBUCKET_GIT_SSH_ORIGIN"] || env["BITBUCKET_GIT_HTTP_ORIGIN"]
)

{
Core::Git::Ext::TAG_BRANCH => env["BITBUCKET_BRANCH"],
Core::Git::Ext::TAG_COMMIT_SHA => env["BITBUCKET_COMMIT"],
Core::Git::Ext::TAG_REPOSITORY_URL => env["BITBUCKET_GIT_SSH_ORIGIN"],
Core::Git::Ext::TAG_REPOSITORY_URL => repository_url,
Core::Git::Ext::TAG_TAG => env["BITBUCKET_TAG"],
TAG_JOB_URL => url,
TAG_PIPELINE_ID => env["BITBUCKET_PIPELINE_UUID"]&.tr("{}", ""),
TAG_JOB_URL => pipeline_url,
TAG_PIPELINE_ID => env["BITBUCKET_PIPELINE_UUID"] ? env["BITBUCKET_PIPELINE_UUID"].tr("{}", "") : nil,
TAG_PIPELINE_NAME => env["BITBUCKET_REPO_FULL_NAME"],
TAG_PIPELINE_NUMBER => env["BITBUCKET_BUILD_NUMBER"],
TAG_PIPELINE_URL => url,
TAG_PIPELINE_URL => pipeline_url,
TAG_PROVIDER_NAME => "bitbucket",
TAG_WORKSPACE_PATH => env["BITBUCKET_CLONE_DIR"]
}
Expand Down
30 changes: 15 additions & 15 deletions sig/datadog/ci/ext/environment.rbs
Original file line number Diff line number Diff line change
Expand Up @@ -33,35 +33,35 @@ module Datadog

def self?.normalize_ref: (untyped name) -> untyped

def self?.filter_sensitive_info: (untyped url) -> (untyped | nil)
def self?.filter_sensitive_info: (untyped url) -> (String | nil)

def self?.extract_appveyor: (untyped env) -> ::Hash[untyped, "appveyor" | untyped]
def self?.extract_appveyor: (untyped env) -> ::Hash[String, String?]

def self?.extract_azure_pipelines: (untyped env) -> ::Hash[untyped, "azurepipelines" | untyped]
def self?.extract_azure_pipelines: (untyped env) -> ::Hash[String, String?]

def self?.extract_bitbucket: (untyped env) -> ::Hash[untyped, untyped | "bitbucket"]
def self?.extract_bitbucket: (untyped env) -> ::Hash[String, String?]

def self?.extract_buddy: (untyped env) -> ::Hash[untyped, "buddy" | ::String | untyped]
def self?.extract_buddy: (untyped env) -> ::Hash[String, String?]

def self?.extract_buildkite: (untyped env) -> untyped
def self?.extract_buildkite: (untyped env) -> Hash[String, String?]

def self?.extract_circle_ci: (untyped env) -> ::Hash[untyped, untyped | ::String | "circleci"]
def self?.extract_circle_ci: (untyped env) -> ::Hash[String, String?]

def self?.extract_github_actions: (untyped env) -> ::Hash[untyped, untyped | ::String | "github"]
def self?.extract_github_actions: (untyped env) -> ::Hash[String, String?]

def self?.extract_gitlab: (untyped env) -> ::Hash[untyped, untyped | "gitlab"]
def self?.extract_gitlab: (untyped env) -> ::Hash[String, String?]

def self?.extract_jenkins: (untyped env) -> ::Hash[untyped, untyped | "jenkins"]
def self?.extract_jenkins: (untyped env) -> ::Hash[String, String?]

def self?.extract_teamcity: (untyped env) -> ::Hash[untyped, "teamcity" | untyped]
def self?.extract_teamcity: (untyped env) -> ::Hash[String, String?]

def self?.extract_travis: (untyped env) -> ::Hash[untyped, untyped | ::String | "travisci"]
def self?.extract_travis: (untyped env) -> ::Hash[String, String?]

def self?.extract_bitrise: (untyped env) -> ::Hash[untyped, "bitrise" | untyped]
def self?.extract_bitrise: (untyped env) -> ::Hash[String, String?]

def self?.extract_codefresh: (untyped env) -> ::Hash[untyped, "codefresh" | untyped]
def self?.extract_codefresh: (untyped env) -> ::Hash[String, String?]

def self?.extract_user_defined_git: (untyped env) -> untyped
def self?.extract_user_defined_git: (untyped env) -> Hash[String, String?]

def self?.git_commit_users: () -> untyped

Expand Down
62 changes: 31 additions & 31 deletions spec/datadog/ci/ext/fixtures/ci/appveyor.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -26,7 +26,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -37,7 +37,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -57,7 +57,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -68,7 +68,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -88,7 +88,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -99,7 +99,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -119,7 +119,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -130,7 +130,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -152,7 +152,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -163,7 +163,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -183,7 +183,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -194,7 +194,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -216,7 +216,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -227,7 +227,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -254,7 +254,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "origin/master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -274,7 +274,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -285,7 +285,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "refs/heads/master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -305,7 +305,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -316,7 +316,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "refs/heads/feature/one",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -336,7 +336,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -348,7 +348,7 @@
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH": "origin/pr",
"APPVEYOR_REPO_BRANCH": "origin/master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -368,7 +368,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -380,7 +380,7 @@
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_PULL_REQUEST_HEAD_REPO_BRANCH": "refs/heads/pr",
"APPVEYOR_REPO_BRANCH": "refs/heads/master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -400,7 +400,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git"
}
],
Expand All @@ -411,7 +411,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "origin/master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -432,7 +432,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git",
"git.tag": "0.1.0"
}
Expand All @@ -444,7 +444,7 @@
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_BRANCH": "refs/heads/master",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand All @@ -465,7 +465,7 @@
"git.commit.author.email": "appveyor-commit-author-email@datadoghq.com",
"git.commit.author.name": "appveyor-commit-author-name",
"git.commit.message": "appveyor-commit-message\nappveyor-commit-message-extended",
"git.commit.sha": "appveyor-repo-commit",
"git.commit.sha": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"git.repository_url": "https://github.com/appveyor-repo-name.git",
"git.tag": "0.1.0"
}
Expand All @@ -475,7 +475,7 @@
"APPVEYOR": "true",
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand Down Expand Up @@ -516,7 +516,7 @@
"APPVEYOR": "true",
"APPVEYOR_BUILD_ID": "appveyor-build-id",
"APPVEYOR_BUILD_NUMBER": "appveyor-pipeline-number",
"APPVEYOR_REPO_COMMIT": "appveyor-repo-commit",
"APPVEYOR_REPO_COMMIT": "b9f0fb3fdbb94c9d24b2c75b49663122a529e123",
"APPVEYOR_REPO_COMMIT_AUTHOR": "appveyor-commit-author-name",
"APPVEYOR_REPO_COMMIT_AUTHOR_EMAIL": "appveyor-commit-author-email@datadoghq.com",
"APPVEYOR_REPO_COMMIT_MESSAGE": "appveyor-commit-message",
Expand Down
Loading

0 comments on commit 038b95c

Please sign in to comment.