Skip to content

Commit

Permalink
fix: correct reference branch / commitSha in performance-reporter (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
tgriesser authored Jan 28, 2022
1 parent f5cb2b9 commit bc87d6e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions system-tests/lib/performance-reporter.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ class StatsdReporter {

console.log(chalk.green('Reporting to honeycomb'))

let branch; let commitSha
let branch
let commitSha

this.honey = new Libhoney({
dataset: 'systemtest-performance',
Expand All @@ -24,8 +25,8 @@ class StatsdReporter {
commitInfo().then((commitInformation) => {
const ciInformation = ciProvider.commitParams() || {}

this.branch = commitInformation.branch || ciInformation.branch
this.commitSha = commitInformation.sha || ciInformation.sha
branch = commitInformation.branch || ciInformation.branch
commitSha = commitInformation.sha || ciInformation.sha
})

runner.on('test', (test) => {
Expand Down

3 comments on commit bc87d6e

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on bc87d6e Jan 28, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/9.4.0/circle-develop-bc87d6eae121cdbd31abd2c36ab1c788b36795b6/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on bc87d6e Jan 28, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the win32 x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/9.4.0/circle-develop-bc87d6eae121cdbd31abd2c36ab1c788b36795b6/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on bc87d6e Jan 28, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

Learn more about this pre-release platform-specific build at https://on.cypress.io/installing-cypress#Install-pre-release-version.

Run this command to install the pre-release locally:

npm install https://cdn.cypress.io/beta/npm/9.4.0/circle-develop-bc87d6eae121cdbd31abd2c36ab1c788b36795b6/cypress.tgz

Please sign in to comment.