Skip to content

Commit

Permalink
Adding new gha workflow for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen351 committed Jan 19, 2024
1 parent 8b548e0 commit 6562c42
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/win-cpu-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on: [ workflow_dispatch, push, pull_request]
jobs:
job:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Download OnnxRuntime
run: |
$url = "https://github.com/microsoft/onnxruntime/releases/download/v1.16.3/onnxruntime-win-x64-1.16.3.zip"
$output = "onnxruntime-win-x64-1.16.3.zip"
Invoke-WebRequest -Uri $url -OutFile $output
Expand-Archive $output -DestinationPath $env:GITHUB_WORKSPACE
Get-ChildItem -Path $env:GITHUB_WORKSPACE -Recurse

0 comments on commit 6562c42

Please sign in to comment.