chore: remove remaining references to AppVeyor (#45339)

This commit is contained in:
David Sanders 2025-02-07 03:57:36 -08:00 committed by GitHub
parent 7bde100a1a
commit 4512b2b5c4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 5 additions and 407 deletions

View file

@ -30,14 +30,11 @@ This script just outputs the theoretical "next" version that a release would use
This script creates all the requisite tags and CI builds that will populate required release assets.
* Creates the git tag
* Kicks off all release builds on AppVeyor and GitHub Actions
* Kicks off all release builds on GitHub Actions
### `run-release-build`
This script is used to re-kick specific release builds after they fail. Sudowoodo is responsible for prompting the release team as to whether or not to run this script. It's currently only used for AppVeyor builds.
> [!IMPORTANT]
> This script should be removed and the "rerun" logic for AppVeyor be implemented in Sudowoodo specifically in the same way that GitHub Actions' rerun logic is.
This script is used to re-kick specific release builds after they fail. Sudowoodo is responsible for prompting the release team as to whether or not to run this script.
### `validate-before-publish`

View file

@ -27,7 +27,7 @@ const targetBranch = positionals[0];
if (positionals.length < 1) {
console.log(`Trigger CI to build release builds of electron.
Usage: ci-release-build.js [--job=CI_JOB_NAME] [--arch=INDIVIDUAL_ARCH] [--ci=AppVeyor|GitHubActions]
Usage: ci-release-build.js [--job=CI_JOB_NAME] [--arch=INDIVIDUAL_ARCH] [--ci=GitHubActions]
[--ghRelease] [--commit=sha] [--newVersion=version_tag] TARGET_BRANCH
`);
process.exit(0);