File tree Expand file tree Collapse file tree 2 files changed +0
-33
lines changed
Expand file tree Collapse file tree 2 files changed +0
-33
lines changed Original file line number Diff line number Diff line change @@ -55,30 +55,11 @@ jobs:
5555 CMAKE_CXX_COMPILER : clang-cl
5656 CC : clang-cl
5757 CXX : clang-cl
58- continue-on-error : true
5958
6059 - name : Build (non-Windows)
6160 if : runner.os != 'Windows'
6261 id : build_non_windows
6362 run : pip install -e .[test]
6463
65- - name : Dump CMakeInit.txt (Windows)
66- if : runner.os == 'Windows'
67- run : |
68- $files = Get-ChildItem -Path $env:TEMP -Recurse -Filter CMakeInit.txt -ErrorAction SilentlyContinue
69- if ($files.Count -eq 0) {
70- Write-Host "No CMakeInit.txt files found under $env:TEMP"
71- exit 0
72- }
73- foreach ($f in $files) {
74- Write-Host "---- $($f.FullName) ----"
75- Get-Content $f.FullName
76- }
77-
78- - name : Fail if Windows build failed
79- if : runner.os == 'Windows' && steps.build_windows.outcome == 'failure'
80- run : exit 1
81-
8264 - name : Test
83- if : runner.os != 'Windows' || steps.build_windows.outcome == 'success'
8465 run : python -m pytest -m "not heavy and (network or not network)"
Original file line number Diff line number Diff line change 9090
9191 - name : Build wheels
929293- continue-on-error : true
94-
95- - name : Dump CMakeInit.txt (Windows)
96- if : ${{ runner.os == 'Windows' }}
97- run : |
98- $files = Get-ChildItem -Path $env:TEMP -Recurse -Filter CMakeInit.txt -ErrorAction SilentlyContinue
99- if ($files.Count -eq 0) {
100- Write-Host "No CMakeInit.txt files found under $env:TEMP"
101- exit 0
102- }
103- foreach ($f in $files) {
104- Write-Host "---- $($f.FullName) ----"
105- Get-Content $f.FullName
106- }
10793
10894 - name : Make sdist
10995 if : ${{ matrix.os == 'ubuntu-latest' }}
You can’t perform that action at this time.
0 commit comments