-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f2de99
commit 2046923
Showing
1 changed file
with
29 additions
and
0 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,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 |