mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
ci: Add missed comments and test_bitcoin.exe command line option
This commit is contained in:
parent
e7c6ed605c
commit
64015eb014
1 changed files with 5 additions and 1 deletions
|
@ -97,10 +97,14 @@ task:
|
||||||
merge_script:
|
merge_script:
|
||||||
- git config --global user.email "ci@ci.ci"
|
- git config --global user.email "ci@ci.ci"
|
||||||
- git config --global user.name "ci"
|
- git config --global user.name "ci"
|
||||||
|
# Windows filesystem loses the executable bit, and all of the executable
|
||||||
|
# files are considered "modified" now. It will break the following `git merge`
|
||||||
|
# command. The next two commands make git ignore this issue.
|
||||||
- git config core.filemode false
|
- git config core.filemode false
|
||||||
- git reset --hard
|
- git reset --hard
|
||||||
- if ($env:CIRRUS_PR -eq $null) { exit 0; }
|
- if ($env:CIRRUS_PR -eq $null) { exit 0; }
|
||||||
- git fetch $env:CIRRUS_REPO_CLONE_URL $env:CIRRUS_BASE_BRANCH
|
- git fetch $env:CIRRUS_REPO_CLONE_URL $env:CIRRUS_BASE_BRANCH
|
||||||
|
# Merge base to detect silent merge conflicts.
|
||||||
- git merge FETCH_HEAD
|
- git merge FETCH_HEAD
|
||||||
vcpkg_cache:
|
vcpkg_cache:
|
||||||
folder: 'C:\Users\ContainerAdministrator\AppData\Local\vcpkg\archives'
|
folder: 'C:\Users\ContainerAdministrator\AppData\Local\vcpkg\archives'
|
||||||
|
@ -138,7 +142,7 @@ task:
|
||||||
- python build_msvc\msvc-autogen.py
|
- python build_msvc\msvc-autogen.py
|
||||||
- msbuild build_msvc\bitcoin.sln -property:Configuration=Release -maxCpuCount -verbosity:minimal -noLogo
|
- msbuild build_msvc\bitcoin.sln -property:Configuration=Release -maxCpuCount -verbosity:minimal -noLogo
|
||||||
unit_tests_script:
|
unit_tests_script:
|
||||||
- src\test_bitcoin.exe
|
- src\test_bitcoin.exe -l test_suite
|
||||||
- src\bench_bitcoin.exe > $null
|
- src\bench_bitcoin.exe > $null
|
||||||
- python test\util\test_runner.py
|
- python test\util\test_runner.py
|
||||||
- python test\util\rpcauth-test.py
|
- python test\util\rpcauth-test.py
|
||||||
|
|
Loading…
Add table
Reference in a new issue