mirror of
https://github.com/ilammy/msvc-dev-cmd.git
synced 2026-09-07 06:07:19 +08:00
Compare commits
7 Commits
v1.7.0
...
new-windows
| Author | SHA1 | Date | |
|---|---|---|---|
| 25affc65a9 | |||
| ed700f61b8 | |||
| 529b6c1c09 | |||
| a7c03318e1 | |||
| 73375e968b | |||
| dd5e2fa0a7 | |||
| 2962e34b14 |
@@ -0,0 +1,19 @@
|
|||||||
|
name: z5-build-env
|
||||||
|
channels:
|
||||||
|
- conda-forge
|
||||||
|
dependencies:
|
||||||
|
- cmake
|
||||||
|
- compilers
|
||||||
|
- bzip2
|
||||||
|
- lz4-c
|
||||||
|
- xz
|
||||||
|
- zlib
|
||||||
|
- boost-cpp>=1.63
|
||||||
|
- xtensor>=0.21,<0.22
|
||||||
|
- xtensor-python>=0.24,<0.25
|
||||||
|
- xsimd
|
||||||
|
- blosc
|
||||||
|
- imageio
|
||||||
|
- nlohmann_json
|
||||||
|
- zarr
|
||||||
|
- h5py
|
||||||
@@ -6,16 +6,33 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
- release/*
|
- release/*
|
||||||
|
- new-windows
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 6 * * *'
|
- cron: '0 6 * * *'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
name: default
|
name: default
|
||||||
runs-on: windows-latest
|
runs-on: ${{ matrix.windows }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
windows: [windows-2016, windows-2019]
|
||||||
steps:
|
steps:
|
||||||
- name: Check out source code
|
- name: Check out source code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Setup miniconda
|
||||||
|
uses: conda-incubator/setup-miniconda@v2
|
||||||
|
with:
|
||||||
|
activate-environment: z5-build-env
|
||||||
|
auto-update-conda: true
|
||||||
|
channels: conda-forge
|
||||||
|
environment-file: .github/workflows/environment.yaml
|
||||||
|
python-version: 3.7
|
||||||
|
auto-activate-base: false
|
||||||
|
env:
|
||||||
|
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
|
||||||
|
|
||||||
- name: Download Internet
|
- name: Download Internet
|
||||||
run: npm install
|
run: npm install
|
||||||
- name: Enable Developer Command Prompt
|
- name: Enable Developer Command Prompt
|
||||||
|
|||||||
@@ -10,7 +10,10 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
name: release
|
name: release
|
||||||
runs-on: windows-latest
|
runs-on: ${{ matrix.windows }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
windows: [windows-2016, windows-2019]
|
||||||
steps:
|
steps:
|
||||||
- name: Setup Developer Command Prompt
|
- name: Setup Developer Command Prompt
|
||||||
uses: ilammy/msvc-dev-cmd@v1
|
uses: ilammy/msvc-dev-cmd@v1
|
||||||
|
|||||||
@@ -42,6 +42,22 @@ jobs:
|
|||||||
# ...
|
# ...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Caveats
|
||||||
|
|
||||||
|
### Name conflicts with `shell: bash`
|
||||||
|
|
||||||
|
Using `shell: bash` in Actions may shadow some of the paths added by MSVC.
|
||||||
|
In particular, `link.exe` (Microsoft C linker) is prone to be shadowed by `/usr/bin/link` (GNU filesystem link tool).
|
||||||
|
|
||||||
|
Unfortunately, this happens because GitHub Actions unconditionally *prepend* GNU paths when `shell: bash` is used,
|
||||||
|
on top of any paths set by `msvc-dev-cmd`, every time at the start of each new step.
|
||||||
|
Hence, there aren't many non-destructive options here.
|
||||||
|
|
||||||
|
If you experience compilation errors where `link` complains about unreasonable command-line arguments,
|
||||||
|
“extra operand *something-something*” – that's probably it.
|
||||||
|
Recommended workaround is to remove `/usr/bin/link` if that interferes with your builds.
|
||||||
|
If this is not acceptable, please file an issue, then we'll figure out something better.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
MIT, see [LICENSE](LICENSE).
|
MIT, see [LICENSE](LICENSE).
|
||||||
|
|||||||
@@ -11,21 +11,6 @@ const VERSIONS = ['2019', '2017']
|
|||||||
|
|
||||||
const VSWHERE_PATH = `${PROGRAM_FILES_X86}\\Microsoft Visual Studio\\Installer`
|
const VSWHERE_PATH = `${PROGRAM_FILES_X86}\\Microsoft Visual Studio\\Installer`
|
||||||
|
|
||||||
const InterestingVariables = [
|
|
||||||
'INCLUDE',
|
|
||||||
'LIB',
|
|
||||||
'LIBPATH',
|
|
||||||
'VCINSTALLDIR',
|
|
||||||
'Path',
|
|
||||||
'Platform',
|
|
||||||
'VisualStudioVersion',
|
|
||||||
'UCRTVersion',
|
|
||||||
'UniversalCRTSdkDir',
|
|
||||||
/^VCTools/,
|
|
||||||
/^VSCMD_/,
|
|
||||||
/^WindowsSDK/i,
|
|
||||||
]
|
|
||||||
|
|
||||||
function findWithVswhere(pattern) {
|
function findWithVswhere(pattern) {
|
||||||
try {
|
try {
|
||||||
let installationPath = child_process.execSync(`vswhere -products * -latest -prerelease -property installationPath`).toString().trim()
|
let installationPath = child_process.execSync(`vswhere -products * -latest -prerelease -property installationPath`).toString().trim()
|
||||||
@@ -113,15 +98,17 @@ function main() {
|
|||||||
args.push('-vcvars_spectre_libs=spectre')
|
args.push('-vcvars_spectre_libs=spectre')
|
||||||
}
|
}
|
||||||
|
|
||||||
const command = `"${findVcvarsall()}" ${args.join(' ')} && set`
|
const vcvars = `"${findVcvarsall()}" ${args.join(' ')}`
|
||||||
core.debug(`Running: ${command}`)
|
core.debug(`vcvars command-line: ${vcvars}`)
|
||||||
const environment = child_process.execSync(command, {shell: "cmd"}).toString().split('\r\n')
|
|
||||||
|
const old_environment = child_process.execSync(`set`, {shell: "cmd"}).toString().split('\r\n')
|
||||||
|
const new_environment = child_process.execSync(`${vcvars} && set`, {shell: "cmd"}).toString().split('\r\n')
|
||||||
|
|
||||||
// If vsvars.bat is given an incorrect command line, it will print out
|
// If vsvars.bat is given an incorrect command line, it will print out
|
||||||
// an error and *still* exit successfully. Parse out errors from output
|
// an error and *still* exit successfully. Parse out errors from output
|
||||||
// which don't look like environment variables, and fail if appropriate.
|
// which don't look like environment variables, and fail if appropriate.
|
||||||
var failed = false
|
var failed = false
|
||||||
for (let line of environment) {
|
for (let line of new_environment) {
|
||||||
if (line.match(/^\[ERROR.*\]/)) {
|
if (line.match(/^\[ERROR.*\]/)) {
|
||||||
failed = true
|
failed = true
|
||||||
// Don't print this particular line which will be confusing in output.
|
// Don't print this particular line which will be confusing in output.
|
||||||
@@ -135,15 +122,32 @@ function main() {
|
|||||||
throw new Error('invalid parameters')
|
throw new Error('invalid parameters')
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let string of environment) {
|
// Convert old environment lines into a dictionary for easier lookup.
|
||||||
|
let old_env_vars = {}
|
||||||
|
for (let string of old_environment) {
|
||||||
const [name, value] = string.split('=')
|
const [name, value] = string.split('=')
|
||||||
for (let pattern of InterestingVariables) {
|
old_env_vars[name] = value
|
||||||
if (name.match(pattern)) {
|
}
|
||||||
core.exportVariable(name, value)
|
|
||||||
break
|
// Now look at the new environment and export everything that changed.
|
||||||
}
|
// These are the variables set by vsvars.bat. Also export everything
|
||||||
|
// that was not there during the first sweep: those are new variables.
|
||||||
|
core.startGroup('Environment variables')
|
||||||
|
for (let string of new_environment) {
|
||||||
|
// vsvars.bat likes to print some fluff at the beginning.
|
||||||
|
// Skip lines that don't look like environment variables.
|
||||||
|
if (!string.includes('=')) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const [name, new_value] = string.split('=')
|
||||||
|
const old_value = old_env_vars[name]
|
||||||
|
// For new variables "old_value === undefined".
|
||||||
|
if (new_value !== old_value) {
|
||||||
|
core.info(`Setting ${name}`)
|
||||||
|
core.exportVariable(name, new_value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
core.endGroup()
|
||||||
|
|
||||||
core.info(`Configured Developer Command Prompt`)
|
core.info(`Configured Developer Command Prompt`)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user