ci: use AppVeyor workflows (#35377)
* ci: use AppVeyor workflows * fixup for skipping test on pr jobs
This commit is contained in:
parent
748a739291
commit
9b787d30f4
1 changed files with 256 additions and 190 deletions
138
appveyor.yml
138
appveyor.yml
|
@ -34,25 +34,45 @@ environment:
|
||||||
MOCHA_REPORTER: mocha-multi-reporters
|
MOCHA_REPORTER: mocha-multi-reporters
|
||||||
MOCHA_MULTI_REPORTERS: mocha-appveyor-reporter, tap
|
MOCHA_MULTI_REPORTERS: mocha-appveyor-reporter, tap
|
||||||
GOMA_FALLBACK_ON_AUTH_FAILURE: true
|
GOMA_FALLBACK_ON_AUTH_FAILURE: true
|
||||||
build_script:
|
|
||||||
|
matrix:
|
||||||
|
|
||||||
|
- job_name: Build
|
||||||
|
|
||||||
|
- job_name: Test
|
||||||
|
job_depends_on: Build
|
||||||
|
|
||||||
|
clone_folder: C:\projects\src\electron
|
||||||
|
|
||||||
|
# the first failed job cancels other jobs and fails entire build
|
||||||
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
|
||||||
|
for:
|
||||||
|
|
||||||
|
-
|
||||||
|
matrix:
|
||||||
|
only:
|
||||||
|
- job_name: Build
|
||||||
|
|
||||||
|
init:
|
||||||
- ps: >-
|
- ps: >-
|
||||||
if(($env:APPVEYOR_PULL_REQUEST_HEAD_REPO_NAME -split "/")[0] -eq ($env:APPVEYOR_REPO_NAME -split "/")[0]) {
|
if(($env:APPVEYOR_PULL_REQUEST_HEAD_REPO_NAME -split "/")[0] -eq ($env:APPVEYOR_REPO_NAME -split "/")[0]) {
|
||||||
Write-warning "Skipping PR build for branch"; Exit-AppveyorBuild
|
Write-warning "Skipping PR build for branch"; Exit-AppveyorBuild
|
||||||
} else {
|
}
|
||||||
node script/yarn.js install --frozen-lockfile
|
|
||||||
|
|
||||||
|
build_script:
|
||||||
|
- ps: |
|
||||||
|
node script/yarn.js install --frozen-lockfile
|
||||||
$result = node script/doc-only-change.js --prNumber=$env:APPVEYOR_PULL_REQUEST_NUMBER --prBranch=$env:APPVEYOR_REPO_BRANCH
|
$result = node script/doc-only-change.js --prNumber=$env:APPVEYOR_PULL_REQUEST_NUMBER --prBranch=$env:APPVEYOR_REPO_BRANCH
|
||||||
Write-Output $result
|
Write-Output $result
|
||||||
if ($result.ExitCode -eq 0) {
|
if ($result.ExitCode -eq 0) {
|
||||||
Write-warning "Skipping build for doc only change"; Exit-AppveyorBuild
|
Write-warning "Skipping build for doc only change"; Exit-AppveyorBuild
|
||||||
}
|
}
|
||||||
}
|
|
||||||
- echo "Building $env:GN_CONFIG build"
|
|
||||||
- git config --global core.longpaths true
|
|
||||||
- cd ..
|
- cd ..
|
||||||
- mkdir src
|
- ps: Write-Host "Building $env:GN_CONFIG build"
|
||||||
|
- git config --global core.longpaths true
|
||||||
- update_depot_tools.bat
|
- update_depot_tools.bat
|
||||||
- ps: Move-Item $env:APPVEYOR_BUILD_FOLDER -Destination src\electron
|
|
||||||
- ps: >-
|
- ps: >-
|
||||||
if (Test-Path 'env:RAW_GOMA_AUTH') {
|
if (Test-Path 'env:RAW_GOMA_AUTH') {
|
||||||
$env:GOMA_OAUTH2_CONFIG_FILE = "$pwd\.goma_oauth2_config"
|
$env:GOMA_OAUTH2_CONFIG_FILE = "$pwd\.goma_oauth2_config"
|
||||||
|
@ -66,7 +86,7 @@ build_script:
|
||||||
node -e "require('./src/utils/goma.js').downloadAndPrepare({ gomaOneForAll: true })"
|
node -e "require('./src/utils/goma.js').downloadAndPrepare({ gomaOneForAll: true })"
|
||||||
- ps: $env:GN_GOMA_FILE = node -e "console.log(require('./src/utils/goma.js').gnFilePath)"
|
- ps: $env:GN_GOMA_FILE = node -e "console.log(require('./src/utils/goma.js').gnFilePath)"
|
||||||
- ps: $env:LOCAL_GOMA_DIR = node -e "console.log(require('./src/utils/goma.js').dir)"
|
- ps: $env:LOCAL_GOMA_DIR = node -e "console.log(require('./src/utils/goma.js').dir)"
|
||||||
- cd ..
|
- cd ..\..
|
||||||
- ps: .\src\electron\script\start-goma.ps1 -gomaDir $env:LOCAL_GOMA_DIR
|
- ps: .\src\electron\script\start-goma.ps1 -gomaDir $env:LOCAL_GOMA_DIR
|
||||||
- ps: >-
|
- ps: >-
|
||||||
if (Test-Path 'env:RAW_GOMA_AUTH') {
|
if (Test-Path 'env:RAW_GOMA_AUTH') {
|
||||||
|
@ -100,7 +120,7 @@ build_script:
|
||||||
cd ..\..
|
cd ..\..
|
||||||
if (Test-Path -Path $zipfile) {
|
if (Test-Path -Path $zipfile) {
|
||||||
# file exists, unzip and then gclient sync
|
# file exists, unzip and then gclient sync
|
||||||
7z x -y $zipfile -mmt=30 -aoa
|
7z x -y $zipfile -mmt=14 -aoa
|
||||||
if (-not (Test-Path -Path "src\buildtools")) {
|
if (-not (Test-Path -Path "src\buildtools")) {
|
||||||
# the zip file must be corrupt - resync
|
# the zip file must be corrupt - resync
|
||||||
$env:RUN_GCLIENT_SYNC="true"
|
$env:RUN_GCLIENT_SYNC="true"
|
||||||
|
@ -186,31 +206,8 @@ build_script:
|
||||||
7z a pdb.zip out\Default\*.pdb
|
7z a pdb.zip out\Default\*.pdb
|
||||||
}
|
}
|
||||||
- python electron/script/zip_manifests/check-zip-manifest.py out/Default/dist.zip electron/script/zip_manifests/dist_zip.win.%TARGET_ARCH%.manifest
|
- python electron/script/zip_manifests/check-zip-manifest.py out/Default/dist.zip electron/script/zip_manifests/dist_zip.win.%TARGET_ARCH%.manifest
|
||||||
test_script:
|
|
||||||
# Workaround for https://github.com/appveyor/ci/issues/2420
|
deploy_script:
|
||||||
- set "PATH=%PATH%;C:\Program Files\Git\mingw64\libexec\git-core"
|
|
||||||
- ps: >-
|
|
||||||
if ((-Not (Test-Path Env:\TEST_WOA)) -And (-Not (Test-Path Env:\ELECTRON_RELEASE)) -And ($env:GN_CONFIG -in "testing", "release")) {
|
|
||||||
$env:RUN_TESTS="true"
|
|
||||||
}
|
|
||||||
- ps: >-
|
|
||||||
if ($env:RUN_TESTS -eq 'true') {
|
|
||||||
New-Item .\out\Default\gen\node_headers\Release -Type directory
|
|
||||||
Copy-Item -path .\out\Default\electron.lib -destination .\out\Default\gen\node_headers\Release\node.lib
|
|
||||||
} else {
|
|
||||||
echo "Skipping tests for $env:GN_CONFIG build"
|
|
||||||
}
|
|
||||||
- cd electron
|
|
||||||
- if "%RUN_TESTS%"=="true" ( echo Running main test suite & node script/yarn test -- --trace-uncaught --runners=main --enable-logging=file --log-file=%cd%\electron.log )
|
|
||||||
- if "%RUN_TESTS%"=="true" ( echo Running native test suite & node script/yarn test -- --trace-uncaught --runners=native --enable-logging=file --log-file=%cd%\electron.log )
|
|
||||||
- cd ..
|
|
||||||
- if "%RUN_TESTS%"=="true" ( echo Verifying non proprietary ffmpeg & python electron\script\verify-ffmpeg.py --build-dir out\Default --source-root %cd% --ffmpeg-path out\ffmpeg )
|
|
||||||
- echo "About to verify mksnapshot"
|
|
||||||
- if "%RUN_TESTS%"=="true" ( echo Verifying mksnapshot & python electron\script\verify-mksnapshot.py --build-dir out\Default --source-root %cd% )
|
|
||||||
- echo "Done verifying mksnapshot"
|
|
||||||
- if "%RUN_TESTS%"=="true" ( echo Verifying chromedriver & python electron\script\verify-chromedriver.py --build-dir out\Default --source-root %cd% )
|
|
||||||
- echo "Done verifying chromedriver"
|
|
||||||
deploy_script:
|
|
||||||
- cd electron
|
- cd electron
|
||||||
- ps: >-
|
- ps: >-
|
||||||
if (Test-Path Env:\ELECTRON_RELEASE) {
|
if (Test-Path Env:\ELECTRON_RELEASE) {
|
||||||
|
@ -224,7 +221,7 @@ deploy_script:
|
||||||
} elseif (Test-Path Env:\TEST_WOA) {
|
} elseif (Test-Path Env:\TEST_WOA) {
|
||||||
node script/release/ci-release-build.js --job=electron-woa-testing --ci=GHA --appveyorJobId=$env:APPVEYOR_JOB_ID $env:APPVEYOR_REPO_BRANCH
|
node script/release/ci-release-build.js --job=electron-woa-testing --ci=GHA --appveyorJobId=$env:APPVEYOR_JOB_ID $env:APPVEYOR_REPO_BRANCH
|
||||||
}
|
}
|
||||||
on_finish:
|
on_finish:
|
||||||
# Uncomment this lines to enable RDP
|
# Uncomment this lines to enable RDP
|
||||||
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
||||||
- cd ..
|
- cd ..
|
||||||
|
@ -242,4 +239,73 @@ on_finish:
|
||||||
appveyor-retry appveyor PushArtifact pdb.zip
|
appveyor-retry appveyor PushArtifact pdb.zip
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-
|
||||||
|
matrix:
|
||||||
|
only:
|
||||||
|
- job_name: Test
|
||||||
|
|
||||||
|
init:
|
||||||
|
- ps: |
|
||||||
|
if ($env:RUN_TESTS -ne 'true') {
|
||||||
|
Write-warning "Skipping tests for $env:APPVEYOR_PROJECT_NAME"; Exit-AppveyorBuild
|
||||||
|
}
|
||||||
|
if(($env:APPVEYOR_PULL_REQUEST_HEAD_REPO_NAME -split "/")[0] -eq ($env:APPVEYOR_REPO_NAME -split "/")[0]) {
|
||||||
|
Write-warning "Skipping PR build for branch"; Exit-AppveyorBuild
|
||||||
|
}
|
||||||
|
build_script:
|
||||||
|
- ps: |
|
||||||
|
node script/yarn.js install --frozen-lockfile
|
||||||
|
$result = node script/doc-only-change.js --prNumber=$env:APPVEYOR_PULL_REQUEST_NUMBER --prBranch=$env:APPVEYOR_REPO_BRANCH
|
||||||
|
Write-Output $result
|
||||||
|
if ($result.ExitCode -eq 0) {
|
||||||
|
Write-warning "Skipping tests for doc only change"; Exit-AppveyorBuild
|
||||||
|
}
|
||||||
|
- ps: |
|
||||||
|
cd ..
|
||||||
|
mkdir out\Default
|
||||||
|
cd ..
|
||||||
|
# Download build artifacts
|
||||||
|
$apiUrl = 'https://ci.appveyor.com/api'
|
||||||
|
$build_info = Invoke-RestMethod -Method Get -Uri "$apiUrl/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/builds/$env:APPVEYOR_BUILD_ID"
|
||||||
|
$artifacts_to_download = @('dist.zip','shell_browser_ui_unittests.exe','chromedriver.zip','ffmpeg.zip','node_headers.zip','mksnapshot.zip','electron.lib')
|
||||||
|
foreach ($job in $build_info.build.jobs) {
|
||||||
|
if ($job.name -eq "Build") {
|
||||||
|
$jobId = $job.jobId
|
||||||
|
foreach($artifact_name in $artifacts_to_download) {
|
||||||
|
if ($artifact_name -eq 'shell_browser_ui_unittests.exe' -Or $artifact_name -eq 'electron.lib') {
|
||||||
|
$outfile = "src\out\Default\$artifact_name"
|
||||||
|
} else {
|
||||||
|
$outfile = $artifact_name
|
||||||
|
}
|
||||||
|
Invoke-RestMethod -Method Get -Uri "$apiUrl/buildjobs/$jobId/artifacts/$artifact_name" -OutFile $outfile
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
- ps: |
|
||||||
|
$out_default_zips = @('dist.zip','chromedriver.zip','mksnapshot.zip')
|
||||||
|
foreach($zip_name in $out_default_zips) {
|
||||||
|
7z x -y -osrc\out\Default $zip_name
|
||||||
|
}
|
||||||
|
- ps: 7z x -y -osrc\out\ffmpeg ffmpeg.zip
|
||||||
|
- ps: 7z x -y -osrc node_headers.zip
|
||||||
|
|
||||||
|
test_script:
|
||||||
|
# Workaround for https://github.com/appveyor/ci/issues/2420
|
||||||
|
- set "PATH=%PATH%;C:\Program Files\Git\mingw64\libexec\git-core"
|
||||||
|
- ps: |
|
||||||
|
cd src
|
||||||
|
New-Item .\out\Default\gen\node_headers\Release -Type directory
|
||||||
|
Copy-Item -path .\out\Default\electron.lib -destination .\out\Default\gen\node_headers\Release\node.lib
|
||||||
|
- cd electron
|
||||||
|
- echo Running main test suite & node script/yarn test -- --trace-uncaught --runners=main --enable-logging=file --log-file=%cd%\electron.log
|
||||||
|
- echo Running native test suite & node script/yarn test -- --trace-uncaught --runners=native --enable-logging=file --log-file=%cd%\electron.log
|
||||||
|
- cd ..
|
||||||
|
- echo Verifying non proprietary ffmpeg & python electron\script\verify-ffmpeg.py --build-dir out\Default --source-root %cd% --ffmpeg-path out\ffmpeg
|
||||||
|
- echo "About to verify mksnapshot"
|
||||||
|
- echo Verifying mksnapshot & python electron\script\verify-mksnapshot.py --build-dir out\Default --source-root %cd%
|
||||||
|
- echo "Done verifying mksnapshot"
|
||||||
|
- echo Verifying chromedriver & python electron\script\verify-chromedriver.py --build-dir out\Default --source-root %cd%
|
||||||
|
- echo "Done verifying chromedriver"
|
||||||
|
|
||||||
|
on_finish:
|
||||||
- if exist electron\electron.log ( appveyor-retry appveyor PushArtifact electron\electron.log )
|
- if exist electron\electron.log ( appveyor-retry appveyor PushArtifact electron\electron.log )
|
Loading…
Add table
Add a link
Reference in a new issue