Python tests in CI Pipeline #571
Workflow file for this run
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
name: "Windows CPU x64 Build" | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- rel-* | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
env: | |
ort_dir: "onnxruntime-win-x64-1.17.0" | |
ort_zip: "$(ort_dir).zip" | |
ort_url: "https://github.com/microsoft/onnxruntime/releases/download/v1.17.0/$(ort_zip)" | |
jobs: | |
job: | |
runs-on: ["self-hosted", "1ES.Pool=onnxruntime-genai-Win2022-CPU"] | |
permissions: | |
security-events: write | |
actions: read | |
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.17.0/onnxruntime-win-x64-1.17.0.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: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: 'cpp' | |
- name: Build with CMake | |
run: | | |
cmake -G "Visual Studio 17 2022" -A x64 . -DCMAKE_BUILD_TYPE=Release -DUSE_CUDA=OFF | |
cmake --build . --config Release --parallel | |
- name: Verify Build Artifacts | |
if: always() | |
run: | | |
Get-ChildItem -Path $env:GITHUB_WORKSPACE\Release -Recurse | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
- name: Upload Build Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: onnxruntime-genai-win-cpu-x64 | |
path: Release/*.lib |