Skip to content

Commit

Permalink
Disabled stubgen for windows cuda checks and fixed WITH_STUBGEN typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
timohl committed Aug 16, 2024
1 parent 8c3451a commit 9c10cc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
CUDA_VERSION: 11.0.3
env:
BUILD_WEBRTC: ${{ ( matrix.BUILD_SHARED_LIBS == 'OFF' && matrix.STATIC_RUNTIME == 'ON' ) && 'ON' || 'OFF' }}
WITH_STUBGEN: ${{ ( matrix.BUILD_SHARED_LIBS == 'ON' ) && 'OFF' || 'ON' }}
WITH_STUBGEN: ${{ ( matrix.BUILD_SHARED_LIBS == 'ON' || matrix.BUILD_CUDA_MODULE == 'ON' ) && 'OFF' || 'ON' }}

steps:
- name: Disk space used
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
-DBUILD_WEBRTC=${{ env.BUILD_WEBRTC }} `
-DBUILD_UNIT_TESTS=ON `
-DBUILD_CUDA_MODULE=${{ matrix.BUILD_CUDA_MODULE }} `
-DWITH_STUBGEN=${{ matrix.WITH_STUBGEN }} `
-DWITH_STUBGEN=${{ env.WITH_STUBGEN }} `
${{ env.SRC_DIR }}
- name: Build
Expand Down

0 comments on commit 9c10cc3

Please sign in to comment.