build: remove CircleCI (#42844)
* build: remove CircleCI * chore: remove remaining CircleCI references
This commit is contained in:
parent
f173a0637a
commit
c006e129b3
20 changed files with 3 additions and 1970 deletions
|
@ -18,11 +18,6 @@ export function getCodesignIdentity () {
|
|||
if (identity === undefined) {
|
||||
const result = cp.spawnSync(path.resolve(__dirname, '../../script/codesign/get-trusted-identity.sh'));
|
||||
if (result.status !== 0 || result.stdout.toString().trim().length === 0) {
|
||||
// Per https://circleci.com/docs/2.0/env-vars:
|
||||
// CIRCLE_PR_NUMBER is only present on forked PRs
|
||||
if (process.env.CI && !process.env.CIRCLE_PR_NUMBER) {
|
||||
throw new Error('No valid signing identity available to run autoUpdater specs');
|
||||
}
|
||||
identity = null;
|
||||
} else {
|
||||
identity = result.stdout.toString().trim();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue