Skip to content

Commit c35159f

Browse files
committed
Clang is detected now! Cleanup logs
1 parent 639d483 commit c35159f

File tree

2 files changed

+0
-33
lines changed

2 files changed

+0
-33
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff 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)"

.github/workflows/cibuildwheels.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -90,20 +90,6 @@ jobs:
9090

9191
- name: Build wheels
9292
uses: pypa/[email protected]
93-
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' }}

0 commit comments

Comments
 (0)