diff options
author | fanquake <fanquake@gmail.com> | 2024-03-12 11:52:43 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2024-03-12 11:53:26 +0000 |
commit | d14c7286b653ad09a5a196aa351b325f97db546b (patch) | |
tree | d703ed6144cabf44b7ebe37b54618b31fac088c3 /.github | |
parent | bd55b7a528df1b7c07cb7158b37601d1d6087273 (diff) | |
parent | 115c283516b8550485df752656e9b863be5903a1 (diff) |
Merge bitcoin/bitcoin#29620: ci: add print of powershell version to win64 job
115c283516b8550485df752656e9b863be5903a1 ci: add print of powershell version to win64 job (Max Edwards)
Pull request description:
Extraction of just printing powershell version from closed PR: https://github.com/bitcoin/bitcoin/pull/29581
See https://github.com/bitcoin/bitcoin/pull/29581#issuecomment-1984212990 for the cause of a CI failure which was a powershell update.
This PR will make it easier to notice in the future that PS has changed.
ACKs for top commit:
hebasto:
ACK 115c283516b8550485df752656e9b863be5903a1. We still use PowerShell in some steps of the "Win64 native" CI job.
Tree-SHA512: 4c7ba9df4f0a98491120326f05e877a995f43a387fe9bbd193549b32f5a4488f85f83e472c9277db457110a7deda04f08832fe6e8129aff4b0b7278be23d4e35
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77e4597b6d..4b2f4f2913 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -160,6 +160,7 @@ jobs: $env:CI_QT_URL | Out-File -FilePath "$env:GITHUB_WORKSPACE\qt_url" $env:CI_QT_CONF | Out-File -FilePath "$env:GITHUB_WORKSPACE\qt_conf" py -3 --version + Write-Host "PowerShell version $($PSVersionTable.PSVersion.ToString())" - name: Restore static Qt cache id: static-qt-cache |