Skip to content

Commit 1f43a67

Browse files
committed
Always build extensions on CI
1 parent 744327f commit 1f43a67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ class Builder {
148148

149149
await this.task("building builtin extensions", async () => {
150150
const exists = await fs.pathExists(path.join(this.vscodeSourcePath, ".build/extensions"))
151-
if (exists) {
151+
if (exists && !process.env.CI) {
152152
process.stdout.write("already built, skipping...")
153153
} else {
154154
await util.promisify(cp.exec)("yarn gulp compile-extensions-build", { cwd: this.vscodeSourcePath })

0 commit comments

Comments
 (0)