We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9f6ddf commit dcac7dbCopy full SHA for dcac7db
.github/workflows/ci.yml
@@ -28,3 +28,10 @@ jobs:
28
29
- name: Install DateTime with cpanm (verbose)
30
run: cpanm --verbose --notest DateTime
31
+
32
+ - name: Show cpanm build log on DateTime failure
33
+ if: failure()
34
+ shell: pwsh
35
+ run: |
36
+ $log = "$env:USERPROFILE\.cpanm\work\$(Get-ChildItem $env:USERPROFILE\.cpanm\work | Sort-Object LastWriteTime -Descending | Select-Object -First 1 -ExpandProperty Name)\build.log"
37
+ if (Test-Path $log) { Get-Content $log }
0 commit comments