Skip to content

Commit 3e2d8d6

Browse files
committed
Use vcbuild.bat
1 parent 366f2b9 commit 3e2d8d6

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/linux-amd64-scheduled-builds.yml renamed to .github/workflows/linux-amd64-daily-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check for newer versions (Linux AMD64)
1+
name: Linux AMD64 daily check
22

33
on:
44
schedule:
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
update:
10-
name: Check for newer versions (Linux AMD64)
10+
name: Linux AMD64 daily check
1111
runs-on: ubuntu-latest
1212
container:
1313
image: ubuntu:devel

.github/workflows/linux-arm64-scheduled-builds.yml renamed to .github/workflows/linux-arm64-daily-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check for newer versions (Linux ARM64)
1+
name: Linux ARM64 daily check
22

33
on:
44
schedule:
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
update:
10-
name: Check for newer versions (Linux ARM64)
10+
name: Linux ARM64 daily check
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: pguyot/arm-runner-action@v2

.github/workflows/windows-amd64-scheduled-builds.yml renamed to .github/workflows/windows-amd64-daily-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Check for newer versions (Windows AMD64)
1+
name: Windows AMD64 daily check
22

33
on:
44
schedule:
@@ -7,16 +7,16 @@ on:
77

88
jobs:
99
update:
10-
name: Check for newer versions (Windows AMD64)
10+
name: Windows AMD64 daily check
1111
runs-on: windows-latest
1212
steps:
1313
- uses: ilammy/msvc-dev-cmd@v1
1414
- uses: MinoruSekine/setup-scoop@v3
1515
with:
16+
buckets: extras
1617
update_path: true
1718
run_as_admin: true
1819
scoop_update: true
19-
buckets: main extras
2020

2121
- name: Install building tools
2222
run: scoop install nodejs python ninja nasm git

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ if (process.platform == "linux") {
7878
await spawnAsync("./configure", ["--ninja", "--shared"], "node");
7979
await spawnAsync("make", [`-j${threadCount}`], "node");
8080
} else if (process.platform == "win32") {
81-
await spawnAsync(".\\vcbuild", ["--shared"], "node");
81+
await spawnAsync("vcbuild.bat", ["--shared"], "node");
8282
}

0 commit comments

Comments
 (0)