Skip to content

Commit

Permalink
move to complete powershell
Browse files Browse the repository at this point in the history
  • Loading branch information
icfaust committed Aug 1, 2024
1 parent f2deaf0 commit 205b335
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,34 +71,29 @@ jobs:
repository: oneapi-src/oneDAL
- name: Install DPC++
run: |
$env:PATH="C:\msys64\usr\bin;$env:PATH"
echo $env:PATH=C:\msys64\usr\bin;$env:PATH >> $env.GITHUB_ENV
& .ci/scripts/install_dpc.ps1
- name: Prepare Intel OpenCL CPU runtime
run: |
# Store the unpacked runtime to centralize and reduce external downloads
$env:PATH="C:\msys64\usr\bin;$env:PATH"
& .ci/scripts/collect_opencl_rt.ps1
- name: System Info
run: |
echo "source dpcpp"
$env:PATH="C:\msys64\usr\bin;$env:PATH"
pip install cpufeature
cmd.exe "/K" '".\dpcpp\compiler\latest\env\vars.bat" && powershell'
Get-Variable -Scope script
bash .ci/scripts/describe_system.sh
- name: Make daal
shell: cmd
run: |
call .\.ci\scripts\build.bat daal vc avx2
& .\.ci\scripts\build.bat daal vc avx2
- name: Make onedal
shell: cmd
run: |
call .\.ci\scripts\build.bat onedal_c vc avx2
& .\.ci\scripts\build.bat onedal_c vc avx2
- name: Make oneapi_dpc
shell: cmd
run: |
call .\dpcpp\compiler\latest\env\vars.bat
call .\dpcpp\compiler\latest\bin\sycl-ls.exe
call .\.ci\scripts\build.bat onedal_dpc vc avx2
& .\dpcpp\compiler\latest\env\vars.bat
Start-Process ".\dpcpp\compiler\latest\bin\sycl-ls.exe" -Wait
& .\.ci\scripts\build.bat onedal_dpc vc avx2
- name: Archive build
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 205b335

Please sign in to comment.