Browse Source
CI: switch windows to vs 2022 (#11184)
* CI: switch windows to vs 2022
* ci: fix regex match
mxyng/cleanup
v0.9.3-rc1
Daniel Hiltgen
9 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
12 additions and
6 deletions
-
.github/workflows/release.yaml
-
.github/workflows/test.yaml
|
|
|
@ -155,6 +155,9 @@ jobs: |
|
|
|
echo "$hipPath\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append |
|
|
|
echo "CC=$hipPath\bin\clang.exe" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
echo "CXX=$hipPath\bin\clang++.exe" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
echo "HIPCXX=$hipPath\bin\clang++.exe" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
echo "HIP_PLATFORM=amd" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
echo "CMAKE_PREFIX_PATH=$hipPath" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
- if: matrix.preset == 'CPU' |
|
|
|
run: | |
|
|
|
echo "CC=clang.exe" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
@ -173,8 +176,8 @@ jobs: |
|
|
|
key: ccache-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.preset }} |
|
|
|
- name: Build target "${{ matrix.preset }}" |
|
|
|
run: | |
|
|
|
Import-Module 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\Microsoft.VisualStudio.DevShell.dll' |
|
|
|
Enter-VsDevShell -VsInstallPath 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise' -SkipAutomaticLocation -DevCmdArguments '-arch=x64 -no_logo' |
|
|
|
Import-Module 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\Microsoft.VisualStudio.DevShell.dll' |
|
|
|
Enter-VsDevShell -VsInstallPath 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise' -SkipAutomaticLocation -DevCmdArguments '-arch=x64 -no_logo' |
|
|
|
cmake --preset "${{ matrix.preset }}" |
|
|
|
cmake --build --parallel --preset "${{ matrix.preset }}" |
|
|
|
cmake --install build --component "${{ startsWith(matrix.preset, 'CUDA ') && 'CUDA' || startsWith(matrix.preset, 'ROCm ') && 'HIP' || 'CPU' }}" --strip --parallel 8 |
|
|
|
@ -241,7 +244,7 @@ jobs: |
|
|
|
dist\${{ matrix.os }}-${{ matrix.arch }}-app.exe |
|
|
|
|
|
|
|
windows-sign: |
|
|
|
runs-on: windows-2022 |
|
|
|
runs-on: windows |
|
|
|
environment: release |
|
|
|
needs: [windows-depends, windows-build] |
|
|
|
steps: |
|
|
|
|
|
|
|
@ -36,7 +36,7 @@ jobs: |
|
|
|
| xargs python3 -c "import sys; from pathlib import Path; print(any(Path(x).match(glob) for x in sys.argv[1:] for glob in '$*'.split(' ')))" |
|
|
|
} |
|
|
|
|
|
|
|
echo changed=$(changed 'llama/llama.cpp/**' 'ml/backend/ggml/ggml/**') | tee -a $GITHUB_OUTPUT |
|
|
|
echo changed=$(changed 'llama/llama.cpp/**/*' 'ml/backend/ggml/ggml/**/*') | tee -a $GITHUB_OUTPUT |
|
|
|
|
|
|
|
linux: |
|
|
|
needs: [changes] |
|
|
|
@ -120,6 +120,9 @@ jobs: |
|
|
|
echo "$hipPath\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append |
|
|
|
echo "CC=$hipPath\bin\clang.exe" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
echo "CXX=$hipPath\bin\clang++.exe" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
echo "HIPCXX=$hipPath\bin\clang++.exe" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
echo "HIP_PLATFORM=amd" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
echo "CMAKE_PREFIX_PATH=$hipPath" | Out-File -FilePath $env:GITHUB_ENV -Append |
|
|
|
- if: ${{ !cancelled() && steps.cache-install.outputs.cache-hit != 'true' }} |
|
|
|
uses: actions/cache/save@v4 |
|
|
|
with: |
|
|
|
@ -133,8 +136,8 @@ jobs: |
|
|
|
path: ${{ github.workspace }}\.ccache |
|
|
|
key: ccache-${{ runner.os }}-${{ runner.arch }}-${{ matrix.preset }} |
|
|
|
- run: | |
|
|
|
Import-Module 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\Microsoft.VisualStudio.DevShell.dll' |
|
|
|
Enter-VsDevShell -VsInstallPath 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise' -SkipAutomaticLocation -DevCmdArguments '-arch=x64 -no_logo' |
|
|
|
Import-Module 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\Microsoft.VisualStudio.DevShell.dll' |
|
|
|
Enter-VsDevShell -VsInstallPath 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise' -SkipAutomaticLocation -DevCmdArguments '-arch=x64 -no_logo' |
|
|
|
cmake --preset "${{ matrix.preset }}" ${{ matrix.flags }} |
|
|
|
cmake --build --parallel --preset "${{ matrix.preset }}" |
|
|
|
env: |
|
|
|
|