Skip to content

Commit 85d91f4

Browse files
committed
debug: win x86
1 parent db5381a commit 85d91f4

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

script/test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ if (process.platform === 'darwin') {
5757
executablePath = executablePaths[0]
5858
} else if (process.platform === 'win32') {
5959
const executablePaths = glob.sync(path.join(CONFIG.buildOutputPath, '**', 'atom*.exe'))
60+
console.log(executablePaths)
6061
assert(executablePaths.length === 1, `More than one application to run tests against was found. ${executablePaths.join(',')}`)
6162
executablePath = executablePaths[0]
6263
} else {

script/vsts/platforms/templates/bootstrap.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,12 @@ steps:
1616
$env:npm_config_clang=1
1717
}
1818
19+
echo $env:AGENT_OS $env:BUILD_ARCH
20+
echo (($env:AGENT_OS -eq "Windows_NT") -and ($env:BUILD_ARCH -eq "x86"))
21+
1922
# Bootstrap
2023
if (($env:AGENT_OS -eq "Windows_NT") -and ($env:BUILD_ARCH -eq "x86")) {
24+
echo boostrap x86
2125
node 'script\vsts\windows-run.js' 'script\bootstrap.cmd'
2226
}
2327
else {

script/vsts/platforms/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ jobs:
55
strategy:
66
maxParallel: 2
77
matrix:
8-
x64:
9-
buildArch: x64
8+
# x64:
9+
# buildArch: x64
1010
x86:
1111
buildArch: x86
1212

script/vsts/pull-requests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ jobs:
1919

2020
# Import OS-specific build definitions
2121
- template: platforms/windows.yml
22-
- template: platforms/macos.yml
23-
- template: platforms/linux.yml
22+
# - template: platforms/macos.yml
23+
# - template: platforms/linux.yml

script/vsts/windows-run.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ async function runScriptForBuildArch() {
2626
}
2727

2828
let exitCode = 0;
29+
console.log(process.env.BUILD_ARCH);
30+
console.log(process.env.BUILD_ARCH === 'x86');
31+
2932
if (process.env.BUILD_ARCH === 'x86') {
3033
await downloadX86Node();
3134

0 commit comments

Comments
 (0)