Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Users/christag/ni/debug symbols with release #1040

Merged
merged 5 commits into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 24 additions & 15 deletions .github/workflows/build_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

env:
CMAKE_VERSION: 3.18.3
BUILD_TYPE: Release
BUILD_TYPE: RelWithDebInfo

jobs:
build:
Expand Down Expand Up @@ -171,9 +171,9 @@ jobs:
with:
name: ni-grpc-device-server-windows-x64
path: |
build/Release/ni_grpc_device_server.exe
build/Release/server_config.json
build/Release/server_capabilities.json
build/RelWithDebInfo/ni_grpc_device_server.exe
build/RelWithDebInfo/server_config.json
build/RelWithDebInfo/server_capabilities.json
retention-days: 5

- name: Upload Windows Test Binaries Artifact
Expand All @@ -182,17 +182,26 @@ jobs:
with:
name: ni-grpc-device-tests-windows-x64
path: |
build/Release/certs/
build/Release/IntegrationTestsRunner.exe
build/Release/TestApi.dll
build/Release/SystemTestsRunner.exe
build/Release/LTE20MHz Waveform (Two Subframes).json
build/Release/NR_FR2_UL_SISO_CC-1_BW-50MHz_SCS-120kHz.json
build/Release/WLAN_80211n_20MHz_1Seg_2Chain_MIMO.json
build/Release/test_create_capture_waveform_serial/
build/Release/test_localhost_config.json
build/Release/test_mutual_tls_config.json
build/Release/UnitTestsRunner.exe
build/RelWithDebInfo/certs/
build/RelWithDebInfo/IntegrationTestsRunner.exe
build/RelWithDebInfo/TestApi.dll
build/RelWithDebInfo/SystemTestsRunner.exe
build/RelWithDebInfo/LTE20MHz Waveform (Two Subframes).json
build/RelWithDebInfo/NR_FR2_UL_SISO_CC-1_BW-50MHz_SCS-120kHz.json
build/RelWithDebInfo/WLAN_80211n_20MHz_1Seg_2Chain_MIMO.json
build/RelWithDebInfo/test_create_capture_waveform_serial/
build/RelWithDebInfo/test_localhost_config.json
build/RelWithDebInfo/test_mutual_tls_config.json
build/RelWithDebInfo/UnitTestsRunner.exe
LICENSE
ThirdPartyNotices.txt
retention-days: 5

- name: Upload Windows Server Debug Symbols Artifact
uses: actions/upload-artifact@v2
if: ${{ (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/releases')) && (runner.os == 'Windows') }}
with:
name: ni-grpc-device-server-windows-x64-debug-symbols
path: |
build/RelWithDebInfo/ni_grpc_device_server.pdb
retention-days: 5
5 changes: 5 additions & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ jobs:
files: downloads/ni-grpc-device-server-windows-x64
dest: downloads/artifacts/ni-grpc-device-server-windows-x64.zip

- uses: actions/download-artifact@v3
with:
name: ni-grpc-device-server-windows-x64-debug-symbols
path: downloads/artifacts

- name: "Get previous tag"
id: previoustag
run: >-
Expand Down
Loading