mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
build,win: add winget config to set up env
PR-URL: https://github.com/nodejs/node/pull/54729 Reviewed-By: Stefan Stojanovic <stefan.stojanovic@janeasystems.com> Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br>
This commit is contained in:
parent
33bbf3751b
commit
bbf08c6a1b
54
.configurations/configuration.dsc.yaml
Normal file
54
.configurations/configuration.dsc.yaml
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
|
||||||
|
# Reference: https://github.com/nodejs/node/blob/main/BUILDING.md#windows
|
||||||
|
properties:
|
||||||
|
resources:
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: pythonPackage
|
||||||
|
directives:
|
||||||
|
description: Install Python 3.12
|
||||||
|
module: Microsoft.WinGet.DSC
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Python.Python.3.12
|
||||||
|
source: winget
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: vsPackage
|
||||||
|
directives:
|
||||||
|
description: Install Visual Studio 2022 Community
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Microsoft.VisualStudio.2022.Community
|
||||||
|
source: winget
|
||||||
|
useLatest: true
|
||||||
|
- resource: Microsoft.VisualStudio.DSC/VSComponents
|
||||||
|
id: vsComponents
|
||||||
|
dependsOn:
|
||||||
|
- vsPackage
|
||||||
|
directives:
|
||||||
|
description: Install required VS workloads and components
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
productId: Microsoft.VisualStudio.Product.Community
|
||||||
|
channelId: VisualStudio.17.Release
|
||||||
|
includeRecommended: true
|
||||||
|
components:
|
||||||
|
- Microsoft.VisualStudio.Workload.NativeDesktop
|
||||||
|
- Microsoft.VisualStudio.Component.VC.Llvm.Clang
|
||||||
|
- Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: gitPackage
|
||||||
|
directives:
|
||||||
|
description: Install Git
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Git.Git
|
||||||
|
source: winget
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: nasmPackage
|
||||||
|
directives:
|
||||||
|
description: Install NetWide Assembler (NASM)
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Nasm.Nasm
|
||||||
|
source: winget
|
||||||
|
configurationVersion: 0.1.0
|
54
.configurations/configuration.vsEnterprise.dsc.yaml
Normal file
54
.configurations/configuration.vsEnterprise.dsc.yaml
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
|
||||||
|
# Reference: https://github.com/nodejs/node/blob/main/BUILDING.md#windows
|
||||||
|
properties:
|
||||||
|
resources:
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: pythonPackage
|
||||||
|
directives:
|
||||||
|
description: Install Python 3.12
|
||||||
|
module: Microsoft.WinGet.DSC
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Python.Python.3.12
|
||||||
|
source: winget
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: vsPackage
|
||||||
|
directives:
|
||||||
|
description: Install Visual Studio 2022 Enterprise
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Microsoft.VisualStudio.2022.Enterprise
|
||||||
|
source: winget
|
||||||
|
useLatest: true
|
||||||
|
- resource: Microsoft.VisualStudio.DSC/VSComponents
|
||||||
|
id: vsComponents
|
||||||
|
dependsOn:
|
||||||
|
- vsPackage
|
||||||
|
directives:
|
||||||
|
description: Install required VS workloads and components
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
productId: Microsoft.VisualStudio.Product.Enterprise
|
||||||
|
channelId: VisualStudio.17.Release
|
||||||
|
includeRecommended: true
|
||||||
|
components:
|
||||||
|
- Microsoft.VisualStudio.Workload.NativeDesktop
|
||||||
|
- Microsoft.VisualStudio.Component.VC.Llvm.Clang
|
||||||
|
- Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: gitPackage
|
||||||
|
directives:
|
||||||
|
description: Install Git
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Git.Git
|
||||||
|
source: winget
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: nasmPackage
|
||||||
|
directives:
|
||||||
|
description: Install NetWide Assembler (NASM)
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Nasm.Nasm
|
||||||
|
source: winget
|
||||||
|
configurationVersion: 0.1.0
|
54
.configurations/configuration.vsProfessional.dsc.yaml
Normal file
54
.configurations/configuration.vsProfessional.dsc.yaml
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
# yaml-language-server: $schema=https://aka.ms/configuration-dsc-schema/0.2
|
||||||
|
# Reference: https://github.com/nodejs/node/blob/main/BUILDING.md#windows
|
||||||
|
properties:
|
||||||
|
resources:
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: pythonPackage
|
||||||
|
directives:
|
||||||
|
description: Install Python 3.12
|
||||||
|
module: Microsoft.WinGet.DSC
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Python.Python.3.12
|
||||||
|
source: winget
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: vsPackage
|
||||||
|
directives:
|
||||||
|
description: Install Visual Studio 2022 Professional
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Microsoft.VisualStudio.2022.Professional
|
||||||
|
source: winget
|
||||||
|
useLatest: true
|
||||||
|
- resource: Microsoft.VisualStudio.DSC/VSComponents
|
||||||
|
id: vsComponents
|
||||||
|
dependsOn:
|
||||||
|
- vsPackage
|
||||||
|
directives:
|
||||||
|
description: Install required VS workloads and components
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
productId: Microsoft.VisualStudio.Product.Professional
|
||||||
|
channelId: VisualStudio.17.Release
|
||||||
|
includeRecommended: true
|
||||||
|
components:
|
||||||
|
- Microsoft.VisualStudio.Workload.NativeDesktop
|
||||||
|
- Microsoft.VisualStudio.Component.VC.Llvm.Clang
|
||||||
|
- Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: gitPackage
|
||||||
|
directives:
|
||||||
|
description: Install Git
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Git.Git
|
||||||
|
source: winget
|
||||||
|
- resource: Microsoft.WinGet.DSC/WinGetPackage
|
||||||
|
id: nasmPackage
|
||||||
|
directives:
|
||||||
|
description: Install NetWide Assembler (NASM)
|
||||||
|
allowPrerelease: true
|
||||||
|
settings:
|
||||||
|
id: Nasm.Nasm
|
||||||
|
source: winget
|
||||||
|
configurationVersion: 0.1.0
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -21,6 +21,7 @@
|
|||||||
!.mailmap
|
!.mailmap
|
||||||
!.nycrc
|
!.nycrc
|
||||||
!.yamllint.yaml
|
!.yamllint.yaml
|
||||||
|
!.configurations/
|
||||||
|
|
||||||
# === Rules for root dir ===
|
# === Rules for root dir ===
|
||||||
/core
|
/core
|
||||||
|
Loading…
Reference in New Issue
Block a user