Skip to content

Commit

Permalink
fix: disable parallelism until we have fixed race conditions (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
aliscott authored Dec 15, 2021
1 parent 12f02b7 commit 9a2bca1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions setup/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15327,6 +15327,7 @@ function getAllVersions() {
}
function exportEnvVars() {
var _a, _b;
core.exportVariable('INFRACOST_PARALLELISM', 1); // TODO: remove this once we have fixed race conditions https://github.com/infracost/infracost/issues/1202
core.exportVariable('INFRACOST_GITHUB_ACTION', true);
core.exportVariable('INFRACOST_SKIP_UPDATE_CHECK', true);
const repoUrl = ((_a = github.context.payload.repository) === null || _a === void 0 ? void 0 : _a.html_url) ||
Expand Down
2 changes: 1 addition & 1 deletion setup/dist/index.js.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions setup/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ async function getAllVersions(): Promise<string[]> {
}

function exportEnvVars(): void {
core.exportVariable('INFRACOST_PARALLELISM', 1) // TODO: remove this once we have fixed race conditions https://github.com/infracost/infracost/issues/1202
core.exportVariable('INFRACOST_GITHUB_ACTION', true);
core.exportVariable('INFRACOST_SKIP_UPDATE_CHECK', true);

Expand Down

0 comments on commit 9a2bca1

Please sign in to comment.