Skip to content

Commit

Permalink
Create release_windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiepeng committed Jul 17, 2024
1 parent 1f2de99 commit 2046923
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release_windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build Standard Library on Windows

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build:
runs-on: windows-latest

steps:
- name: Remove Windows OpenSSH and use the default ssh in git
run: Remove-WindowsCapability -Online -Name OpenSSH.Client
- uses: actions/checkout@v4
with:
ssh-key: ${{ secrets.RADARSIMCPP }}
submodules: recursive
- name: Build RadarSimLib
run: |
cd radarsimlib
.\build_win.bat --arch cpu --tier standard
# - name: Archive built module
# uses: actions/upload-artifact@v4
# if: success()
# with:
# name: radarsimlib_win_x86_64_cpu
# path: .\radarsimlib_win_x86_64_cpu

0 comments on commit 2046923

Please sign in to comment.