Skip to content

Commit de84aed

Browse files
.github/workflows/windows.yml: disable sycl build
1 parent 271dc70 commit de84aed

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

.github/workflows/windows.yml

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -128,25 +128,28 @@ jobs:
128128
run: cmake --install build_hip --prefix install
129129

130130
- name: Cache SYCL
131+
if: false
131132
id: cache-sycl
132133
uses: actions/cache@v3
133134
with:
134135
path: C:\Program Files (x86)\Intel\oneAPI
135136
key: ${{ runner.os }}-dpcpp-2024.0
136137

137138
- name: Setup SYCL
138-
if: steps.cache-sycl.outputs.cache-hit != 'true'
139+
if: false && steps.cache-sycl.outputs.cache-hit != 'true'
139140
run: |
140141
curl -J -o dpcpp_installer.exe https://registrationcenter-download.intel.com/akdlm/IRC_NAS/94e15cb5-4bcc-4fdd-91cf-0f819a54e42e/w_dpcpp-cpp-compiler_p_2024.0.2.28_offline.exe
141142
dpcpp_installer -s -a -s --eula accept
142143
143144
- name: Setup ocloc (Gen12+)
145+
if: false
144146
shell: pwsh
145147
run: |
146148
$env:PATH = "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\lib\ocloc;$env:PATH"
147149
"PATH=$env:PATH" | Out-File -Append -FilePath $env:GITHUB_ENV
148150
149151
- name: Configure (SYCL, Gen12+)
152+
if: false
150153
run: |
151154
ocloc compile --help
152155
@@ -164,12 +167,14 @@ jobs:
164167
-D CMAKE_SHARED_LINKER_FLAGS="-fsycl -fsycl-targets=spir64_gen -Xsycl-target-backend=spir64_gen \"-device gen12lp,xe-hpg\""
165168
166169
- name: Build (SYCL, Gen12+)
170+
if: false
167171
run: |
168172
call "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\env\vars.bat"
169173
170174
cmake --build build_sycl_gen12+ --verbose
171175
172176
- name: Install (SYCL, Gen12+)
177+
if: false
173178
run: echo f | xcopy build_sycl_gen12+\sycl_source\bm3dsycl.dll install\bin\bm3dsycl_gen12+.dll /f
174179

175180
- name: Prepare for upload
@@ -204,15 +209,15 @@ jobs:
204209
xcopy bm3dhip.dll VapourSynth-BM3DHIP-${{ github.event.inputs.tag }} /f
205210
7z a -t7z -mx=9 ../VapourSynth-BM3DHIP-${{ github.event.inputs.tag }}.7z VapourSynth-BM3DHIP-${{ github.event.inputs.tag }}
206211
207-
mkdir VapourSynth-BM3DSYCL-${{ github.event.inputs.tag }}
208-
xcopy bm3dsycl_*.dll VapourSynth-BM3DSYCL-${{ github.event.inputs.tag }} /f
209-
7z a -t7z -mx=9 ../VapourSynth-BM3DSYCL-${{ github.event.inputs.tag }}.7z VapourSynth-BM3DSYCL-${{ github.event.inputs.tag }}
212+
:: mkdir VapourSynth-BM3DSYCL-${{ github.event.inputs.tag }}
213+
:: xcopy bm3dsycl_*.dll VapourSynth-BM3DSYCL-${{ github.event.inputs.tag }} /f
214+
:: 7z a -t7z -mx=9 ../VapourSynth-BM3DSYCL-${{ github.event.inputs.tag }}.7z VapourSynth-BM3DSYCL-${{ github.event.inputs.tag }}
210215
211-
mkdir SYCL-Runtime-${{ github.event.inputs.tag }}
212-
echo f | xcopy "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\windows\bin\sycl6.dll" SYCL-Runtime-${{ github.event.inputs.tag }} /f
213-
echo f | xcopy "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\windows\bin\pi_*.dll" SYCL-Runtime-${{ github.event.inputs.tag }} /f /i
214-
echo f | xcopy "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\windows\redist\intel64_win\compiler\libmmd.dll" SYCL-Runtime-${{ github.event.inputs.tag }} /f
215-
7z a -t7z -mx=9 ../SYCL-Runtime-${{ github.event.inputs.tag }}.7z SYCL-Runtime-${{ github.event.inputs.tag }}
216+
:: mkdir SYCL-Runtime-${{ github.event.inputs.tag }}
217+
:: echo f | xcopy "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\windows\bin\sycl6.dll" SYCL-Runtime-${{ github.event.inputs.tag }} /f
218+
:: echo f | xcopy "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\windows\bin\pi_*.dll" SYCL-Runtime-${{ github.event.inputs.tag }} /f /i
219+
:: echo f | xcopy "C:\Program Files (x86)\Intel\oneAPI\compiler\latest\windows\redist\intel64_win\compiler\libmmd.dll" SYCL-Runtime-${{ github.event.inputs.tag }} /f
220+
:: 7z a -t7z -mx=9 ../SYCL-Runtime-${{ github.event.inputs.tag }}.7z SYCL-Runtime-${{ github.event.inputs.tag }}
216221
217222
- name: Release
218223
uses: softprops/action-gh-release@v1
@@ -224,8 +229,8 @@ jobs:
224229
VapourSynth-BM3DCUDA_RTC-${{ github.event.inputs.tag }}.7z
225230
VapourSynth-BM3DCPU-${{ github.event.inputs.tag }}.7z
226231
VapourSynth-BM3DHIP-${{ github.event.inputs.tag }}.7z
227-
VapourSynth-BM3DSYCL-${{ github.event.inputs.tag }}.7z
228-
SYCL-Runtime-${{ github.event.inputs.tag }}.7z
232+
# VapourSynth-BM3DSYCL-${{ github.event.inputs.tag }}.7z
233+
# SYCL-Runtime-${{ github.event.inputs.tag }}.7z
229234
fail_on_unmatched_files: true
230235
generate_release_notes: false
231236
prerelease: true

0 commit comments

Comments
 (0)