mirror of
https://github.com/microsoft/setup-msbuild.git
synced 2025-04-05 02:39:24 +07:00
Compare commits
58 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
767f00a3f0 | ||
![]() |
442baebb59 | ||
![]() |
70b70342ae | ||
![]() |
31e0ba28c7 | ||
![]() |
6fb0222098 | ||
![]() |
ede762b26a | ||
![]() |
031090342a | ||
![]() |
79fdc4b9cf | ||
![]() |
56275591f5 | ||
![]() |
faa06544ad | ||
![]() |
c9685f2ae5 | ||
![]() |
f37d07ecbd | ||
![]() |
3404ff3d40 | ||
![]() |
1ff57057b5 | ||
![]() |
0e7c76c8f5 | ||
![]() |
3ac564e2a5 | ||
![]() |
d3ea839497 | ||
![]() |
0a09b7fae9 | ||
![]() |
0b93bd95fc | ||
![]() |
cc48120b57 | ||
![]() |
645e3f7313 | ||
![]() |
1ccd12233c | ||
![]() |
750ad4a08c | ||
![]() |
8c3da926c2 | ||
![]() |
e0b9f539d1 | ||
![]() |
e38c2fa359 | ||
![]() |
1bba226ea3 | ||
![]() |
0b44c6745b | ||
![]() |
34cfbaee7f | ||
![]() |
a1c1eda384 | ||
![]() |
d6496d378f | ||
![]() |
b381dbabab | ||
![]() |
36d6f2fae1 | ||
![]() |
65aeb87ed1 | ||
![]() |
50f8578df5 | ||
![]() |
fbf0ccc42a | ||
![]() |
fbf959e541 | ||
![]() |
ce3de01b52 | ||
![]() |
c7c2934c87 | ||
![]() |
c4a66a0e8a | ||
![]() |
e48d8c6605 | ||
![]() |
ab534842b4 | ||
![]() |
84e0d709b2 | ||
![]() |
613696a2a0 | ||
![]() |
6c2e301a93 | ||
![]() |
0cd944e169 | ||
![]() |
aaa8d4fac0 | ||
![]() |
323ede3ce9 | ||
![]() |
dfaf113754 | ||
![]() |
33941d8101 | ||
![]() |
8611b39e1b | ||
![]() |
2cbcfcb795 | ||
![]() |
a7d39343f8 | ||
![]() |
412f270368 | ||
![]() |
047d9a0678 | ||
![]() |
9afe006fef | ||
![]() |
babd7930ed | ||
![]() |
7626c90a39 |
30
.github/workflows/test.yml
vendored
30
.github/workflows/test.yml
vendored
@ -10,12 +10,20 @@ on:
|
||||
- dev
|
||||
paths-ignore:
|
||||
- '*.md'
|
||||
workflow_dispatch:
|
||||
branches:
|
||||
- dev
|
||||
- arm64
|
||||
- master
|
||||
paths-ignore:
|
||||
- '*.md'
|
||||
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Setup MSBuild (vswhere-path)
|
||||
id: setup_msbuild_explicit
|
||||
@ -33,11 +41,29 @@ jobs:
|
||||
env:
|
||||
PATH: ''
|
||||
|
||||
- name: Setup MSBuild (x64)
|
||||
if: always()
|
||||
id: setup_msbuild_path_x64
|
||||
uses: ./
|
||||
with:
|
||||
vs-prerelease: true
|
||||
msbuild-architecture: 'x64'
|
||||
|
||||
- name: Setup MSBuild (arm64)
|
||||
if: always()
|
||||
id: setup_msbuild_path_arm
|
||||
uses: ./
|
||||
with:
|
||||
vs-prerelease: true
|
||||
msbuild-architecture: 'arm64'
|
||||
|
||||
- name: echo msbuild path
|
||||
run: |
|
||||
echo "vswhere-path: ${{ steps.setup_msbuild_explicit.outputs.msbuildPath }}"
|
||||
echo "PATH: ${{ steps.setup_msbuild_path.outputs.msbuildPath }}"
|
||||
echo "ARM PATH: ${{ steps.setup_msbuild_path_arm.outputs.msbuildPath }}"
|
||||
echo "ARM PATH: ${{ steps.setup_msbuild_path_x64.outputs.msbuildPath }}"
|
||||
echo "Fallback: ${{ steps.setup_msbuild_fallback.outputs.msbuildPath }}"
|
||||
|
||||
- name: echo MSBuild
|
||||
run: msbuild -version
|
||||
run: msbuild -version
|
||||
|
58
README.md
58
README.md
@ -1,41 +1,80 @@
|
||||
# microsoft/setup-msbuild
|
||||
You know how handy that 'Visual Studio Developer Command Prompt' is on your local machine? And how it adds several things to `PATH` to allow you to just issue commands like `msbuild` or otherwise? Use this action to setup similar flexibility in your Windows-based GitHub Actions runners. This will let you discover where the `MSBuild` tool is and automatically add it to the `PATH` environment variables for you so future steps in your Actions workflow can just initiate `msbuild` commands without knowing the full path.
|
||||
|
||||
> Please note this tools is not to replicate the full 'Developer Command Prompt' but only discover and assist with MSBuild and not other tools like cl.exe
|
||||
This action will help discover where the `MSBuild` tool is and automatically add it to the `PATH` environment variables for you so future steps in your Actions workflow can just initiate `msbuild` commands without knowing the full path.
|
||||
|
||||
## Usage
|
||||
> [!IMPORTANT]
|
||||
> Please note this tool does NOT add other Visual Studio tools (like VSTest, cl, cmake, or others) to `PATH`
|
||||
|
||||
## Example Usage
|
||||
|
||||
```yml
|
||||
- name: Add msbuild to PATH
|
||||
uses: microsoft/setup-msbuild@v1.0.3
|
||||
uses: microsoft/setup-msbuild@v2
|
||||
|
||||
- name: Build app for release
|
||||
run: msbuild src\YourProjectFile.csproj -t:rebuild -verbosity:diag -property:Configuration=Release
|
||||
```
|
||||
|
||||
## Specifying specific versions of Visual Studio
|
||||
## Runners and included software
|
||||
|
||||
This action is intended to be used within the GitHub Actions workflows using the model of 'runners' either hosted (provided by GitHub) or self-hosted (provided by you). The version and parameters you specify below are going to be scoped to what software actually exists on the runner image being used. For example, hosted runner images from GitHub typically do NOT have pre-release versions of Visual Studio on them so using `vs-prerelease` parameter noted below may not have intended effect when using hosted runners. The software included for GitHub-hosted runner images can always be found here: <https://github.com/actions/runner-images> which also includes information on when/how software on hosted images gets updated.
|
||||
|
||||
## Optional Parameters
|
||||
|
||||
There are a few additional parameters that can be set if you need them. These are optional and should only be set if you know that you need them or what you are doing.
|
||||
|
||||
### Specifying specific versions of Visual Studio (optional)
|
||||
|
||||
You may have a situation where your Actions runner has multiple versions of Visual Studio and you need to find a specific version of the tool. Simply add the `vs-version` input to specify the range of versions to find. If looking for a specific version, specify the minimum and maximum versions as shown in the example below, which will look for just 16.4.
|
||||
|
||||
```yml
|
||||
- name: Add msbuild to PATH
|
||||
uses: microsoft/setup-msbuild@v1.0.3
|
||||
uses: microsoft/setup-msbuild@v2
|
||||
with:
|
||||
vs-version: '[16.4,16.5)'
|
||||
```
|
||||
|
||||
The syntax is the same used for Visual Studio extensions, where square brackets like "[" mean inclusive, and parenthesis like "(" mean exclusive. A comma is always required, but eliding the minimum version looks for all older versions and eliding the maximum version looks for all newer versions. See the [vswhere wiki](https://github.com/microsoft/vswhere/wiki) for more details.
|
||||
|
||||
### Use pre-release versions of Visual Studio (optional)
|
||||
|
||||
If you need your Actions runner to target a pre-release version of Visual Studio, simply add the `vs-prerelease` input. This is necessary if you want to run an action on a virtual environment that contains a pre-release version of Visual Studio or self-hosted images that you may have that also have pre-release versions of Visual Studio installed.
|
||||
|
||||
```yml
|
||||
- name: Add msbuild to PATH
|
||||
uses: microsoft/setup-msbuild@v2
|
||||
with:
|
||||
vs-prerelease: true
|
||||
```
|
||||
|
||||
### Specifying MSBuild architecture (optional)
|
||||
|
||||
By default the action will use the x86 architecture for MSBuild, but it is possible to target the x64 versions instead. Simply add the `msbuild-architecture` input. Valid input values are `x86` (default), `x64`, and `arm64`. Note that the success of these will rely on the runner OS.
|
||||
|
||||
```yml
|
||||
- name: Add msbuild to PATH
|
||||
uses: microsoft/setup-msbuild@v2
|
||||
with:
|
||||
msbuild-architecture: x64
|
||||
```
|
||||
|
||||
## How does this work?
|
||||
|
||||
This makes use of the vswhere tool which is a tool delivered by Microsoft to help in identifying Visual Studio installs and various components. This tool is installed on the hosted Windows runners for GitHub Actions. If you are using a self-hosted runner, you either need to make sure vswhere.exe is in your agent's PATH or specify a full path to the location using:
|
||||
|
||||
```yml
|
||||
- name: Add msbuild to PATH
|
||||
uses: microsoft/setup-msbuild@v1.0.3
|
||||
uses: microsoft/setup-msbuild@v2
|
||||
with:
|
||||
vswhere-path: 'C:\path\to\your\tools\'
|
||||
```
|
||||
|
||||
## Notes on arguments
|
||||
While the Action enables you to specify a `vswhere` path as well as a `vs-version`, these are more advanced options and when using GitHub-hosted runners you should not need these and is recommended you don't specify them. Using these require you to fully understand the runner environment, updates to the tools on the runner, and can cause failures if you are out of sync. For GitHub-hosted runners, omitting these arguments is the preferred usage.
|
||||
|
||||
While the Action enables you to specify a `vswhere` path as well as a `vs-version`, these are more advanced options and when using GitHub-hosted runners you should not need these and is recommended you don't specify them as they are optional. Using these require you to fully understand the runner environment, updates to the tools on the runner, and can cause failures if you are out of sync. For GitHub-hosted runners, omitting these arguments is the preferred usage.
|
||||
|
||||
## Building this repo
|
||||
|
||||
As with most GitHub Actions, this requires NodeJS development tools. After installing NodeJS, you can build this by executing:
|
||||
|
||||
```bash
|
||||
@ -47,13 +86,14 @@ npm run pack
|
||||
which will modify/create the /dist folder with the final index.js output
|
||||
|
||||
# Credits
|
||||
|
||||
Thank you to [Warren Buckley](https://github.com/warrenbuckley) for being a core contributor to this Action for the benefit of all developers!
|
||||
|
||||
# Contributing
|
||||
|
||||
This project welcomes contributions and suggestions. Most contributions require you to agree to a
|
||||
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
|
||||
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
|
||||
the rights to use your contribution. For details, visit <https://cla.opensource.microsoft.com>.
|
||||
|
||||
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
|
||||
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
|
||||
|
18
action-types.yml
Normal file
18
action-types.yml
Normal file
@ -0,0 +1,18 @@
|
||||
# See https://github.com/krzema12/github-actions-typing
|
||||
inputs:
|
||||
vswhere-path:
|
||||
type: string
|
||||
vs-version:
|
||||
type: string
|
||||
vs-prerelease:
|
||||
type: boolean
|
||||
msbuild-architecture:
|
||||
type: enum
|
||||
name: Architecture
|
||||
allowed-values:
|
||||
- x86
|
||||
- x64
|
||||
- arm64
|
||||
outputs:
|
||||
msbuildPath:
|
||||
type: string
|
22
action.yml
22
action.yml
@ -1,23 +1,27 @@
|
||||
name: 'setup-msbuild'
|
||||
description: 'Helps set up MSBuild into PATH for later usage.'
|
||||
author: 'Microsoft'
|
||||
name: "setup-msbuild"
|
||||
description: "Helps set up MSBuild into PATH for later usage."
|
||||
author: "Microsoft"
|
||||
branding:
|
||||
color: purple
|
||||
icon: terminal
|
||||
inputs:
|
||||
vswhere-path:
|
||||
required: false
|
||||
description: 'Folder location of where vswhere.exe is located if a self-hosted agent'
|
||||
description: "Folder location of where vswhere.exe is located if a self-hosted agent"
|
||||
vs-version:
|
||||
description: 'Version of Visual Studio to search; defaults to latest if not specified'
|
||||
description: "Version of Visual Studio to search; defaults to latest if not specified"
|
||||
required: false
|
||||
vs-prerelease:
|
||||
description: 'Enable searching for pre-release versions of Visual Studio/MSBuild'
|
||||
description: "Enable searching for pre-release versions of Visual Studio/MSBuild"
|
||||
required: false
|
||||
msbuild-architecture:
|
||||
description: 'The preferred processor architecture of MSBuild. Can be either "x86", "x64", or "arm64". "x64" is only available from Visual Studio version 17.0 and later.'
|
||||
required: false
|
||||
default: "x86"
|
||||
outputs:
|
||||
msbuildPath:
|
||||
description: 'The resulting location of msbuild for your inputs'
|
||||
description: "The resulting location of msbuild for your inputs"
|
||||
|
||||
runs:
|
||||
using: 'node12'
|
||||
main: 'dist/index.js'
|
||||
using: "node20"
|
||||
main: "dist/index.js"
|
||||
|
@ -7,7 +7,7 @@ This is a quick document to walk through the process of building and releasing.
|
||||
- Build the branch/package
|
||||
- `npm install`
|
||||
- `npm run build`
|
||||
- `npm run package`
|
||||
- `npm run pack`
|
||||
- Prune the dependencies to only production
|
||||
- `npm prune --production`
|
||||
- Uncomment `node_modules` in `.gitignore` **for this branch only**
|
||||
|
2411
dist/index.js
vendored
2411
dist/index.js
vendored
File diff suppressed because it is too large
Load Diff
8375
package-lock.json
generated
8375
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "setup-msbuild",
|
||||
"version": "1.0.3",
|
||||
"version": "2.0.0",
|
||||
"private": true,
|
||||
"description": "Helps set up specific MSBuild tool into PATH for later usage.",
|
||||
"main": "lib/main.js",
|
||||
@ -28,7 +28,7 @@
|
||||
"author": "Microsoft",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@actions/core": "^1.2.6",
|
||||
"@actions/core": "^1.10.0",
|
||||
"@actions/exec": "^1.0.3",
|
||||
"@actions/tool-cache": "^1.3.0"
|
||||
},
|
||||
@ -47,4 +47,4 @@
|
||||
"ts-jest": "^24.2.0",
|
||||
"typescript": "^3.6.4"
|
||||
}
|
||||
}
|
||||
}
|
42
src/main.ts
42
src/main.ts
@ -9,6 +9,7 @@ const IS_WINDOWS = process.platform === 'win32'
|
||||
const VS_VERSION = core.getInput('vs-version') || 'latest'
|
||||
const VSWHERE_PATH = core.getInput('vswhere-path')
|
||||
const ALLOW_PRERELEASE = core.getInput('vs-prerelease') || 'false'
|
||||
let MSBUILD_ARCH = core.getInput('msbuild-architecture') || 'x86'
|
||||
|
||||
// if a specific version of VS is requested
|
||||
let VSWHERE_EXEC = '-products * -requires Microsoft.Component.MSBuild -property installationPath -latest '
|
||||
@ -70,25 +71,42 @@ async function run(): Promise<void> {
|
||||
const installationPath = data.toString().trim()
|
||||
core.debug(`Found installation path: ${installationPath}`)
|
||||
|
||||
let toolPath = path.join(
|
||||
installationPath,
|
||||
'MSBuild\\Current\\Bin\\MSBuild.exe'
|
||||
)
|
||||
|
||||
core.debug(`Checking for path: ${toolPath}`)
|
||||
if (!fs.existsSync(toolPath)) {
|
||||
toolPath = path.join(
|
||||
// x64 and arm64 only exist in one possible location, so no fallback probing
|
||||
if (MSBUILD_ARCH === 'x64' || MSBUILD_ARCH === 'arm64') {
|
||||
// x64 is actually amd64 so change to that
|
||||
if (MSBUILD_ARCH === 'x64') {
|
||||
MSBUILD_ARCH = 'amd64'
|
||||
}
|
||||
let toolPath = path.join(
|
||||
installationPath,
|
||||
'MSBuild\\15.0\\Bin\\MSBuild.exe'
|
||||
`MSBuild\\Current\\Bin\\${MSBUILD_ARCH}\\MSBuild.exe`
|
||||
)
|
||||
|
||||
core.debug(`Checking for path: ${toolPath}`)
|
||||
if (!fs.existsSync(toolPath)) {
|
||||
return
|
||||
}
|
||||
}
|
||||
foundToolPath = toolPath
|
||||
} else {
|
||||
let toolPath = path.join(
|
||||
installationPath,
|
||||
'MSBuild\\Current\\Bin\\MSBuild.exe'
|
||||
)
|
||||
|
||||
foundToolPath = toolPath
|
||||
core.debug(`Checking for path: ${toolPath}`)
|
||||
if (!fs.existsSync(toolPath)) {
|
||||
toolPath = path.join(
|
||||
installationPath,
|
||||
'MSBuild\\15.0\\Bin\\MSBuild.exe'
|
||||
)
|
||||
|
||||
core.debug(`Checking for path: ${toolPath}`)
|
||||
if (!fs.existsSync(toolPath)) {
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
foundToolPath = toolPath
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user