-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from microsoft/Cjian/win-gha
Adding windows build GHA
- Loading branch information
Showing
3 changed files
with
63 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
on: [ workflow_dispatch, pull_request ] | ||
env: | ||
ort_dir: "onnxruntime-win-x64-1.16.3" | ||
ort_zip: "$(ort_dir).zip" | ||
ort_url: "https://github.com/microsoft/onnxruntime/releases/download/v1.16.3/$(ort_zip)" | ||
|
||
jobs: | ||
job: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Setup Visual Studio 2022 | ||
uses: microsoft/[email protected] | ||
with: | ||
vs-version: '17.5' | ||
|
||
- name: Download OnnxRuntime | ||
run: | | ||
$env:ort_url = "https://github.com/microsoft/onnxruntime/releases/download/v1.16.3/onnxruntime-win-x64-1.16.3.zip" | ||
Invoke-WebRequest -Uri $env:ort_url -OutFile $env:ort_zip | ||
- name: Unzip OnnxRuntime | ||
run: | | ||
Expand-Archive $env:ort_zip -DestinationPath . | ||
Remove-Item -Path $env:ort_zip | ||
- name: Rename OnnxRuntime to ort | ||
run: | | ||
Rename-Item -Path $env:ort_dir -NewName ort | ||
- name: Git Submodule Update | ||
run: | | ||
git submodule update --init --recursive | ||
- name: Build with CMake | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake -G "Visual Studio 17 2022" -A x64 .. -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release | ||
cmake --build . --config Release --parallel | ||
- name: Verify Build Artifacts | ||
run: | | ||
Get-ChildItem -Path $env:GITHUB_WORKSPACE\build\Release -Recurse | ||
- name: Upload Build Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: onnxruntime-genai-win-cpu-x64 | ||
path: build/Release/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters