File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -31,11 +31,14 @@ jobs:
3131 - name : update vcpkg installation
3232 run : |
3333 $env:VCPKG_ROOT = $env:VCPKG_INSTALLATION_ROOT
34+ echo "::group::————————————— git pull —————————————"
3435 cd $env:VCPKG_INSTALLATION_ROOT
35- git pull --no-tags -q
36+ # --depth=1 may cause 'fatal: refusing to merge unrelated histories'
37+ git pull --no-tags -q --depth=1000
38+ echo ::endgroup::
39+ echo "`n———————————— commit info ————————————"
40+ git log -1 --pretty=format:'%H %cs%n%n'
3641 ./bootstrap-vcpkg.bat
37- echo "`n———————————— ./vcpkg list ————————————"
38- ./vcpkg list
3942 timeout-minutes : 15
4043
4144 - name : Update mswin tools 7z and Upload
Original file line number Diff line number Diff line change @@ -80,6 +80,9 @@ def generate_package_files
8080 exec_check "Removing outdated packages" ,
8181 "./vcpkg remove --outdated"
8282
83+ exec_check "Package List" ,
84+ "./vcpkg list"
85+
8386 exec_check "Exporting package files from vcpkg" ,
8487 "./vcpkg export --triplet=x64-windows #{ PACKAGES } --raw --output=#{ PKG_NAME } --output-dir=#{ EXPORT_DIR } "
8588 end
You can’t perform that action at this time.
0 commit comments