Skip to content

Commit

Permalink
correct syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
akashchi committed Jan 16, 2024
1 parent 12f0c3b commit 317fe2c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,12 +280,14 @@ jobs:
self-hosted-runner: 'true'

- name: Build cpp samples
run: & ${{ env.SAMPLES_INSTALL_DIR }}/cpp/build_samples_msvc.ps1 -InstallDirectory ${{ env.INSTALL_DIR }} -BuildDirectory ${{ env.BUILD_DIR }}/cpp_samples
run: |
& ${{ env.SAMPLES_INSTALL_DIR }}/cpp/build_samples_msvc.ps1 -InstallDirectory ${{ env.INSTALL_DIR }} -BuildDirectory ${{ env.BUILD_DIR }}/cpp_samples
env:
CMAKE_COMPILE_WARNING_AS_ERROR: 'ON'

- name: Build c samples
run: & ${{ env.SAMPLES_INSTALL_DIR }}/c/build_samples_msvc.ps1 -InstallDirectory ${{ env.INSTALL_DIR }} -BuildDirectory ${{ env.BUILD_DIR }}/c_samples
run: |
& ${{ env.SAMPLES_INSTALL_DIR }}/c/build_samples_msvc.ps1 -InstallDirectory ${{ env.INSTALL_DIR }} -BuildDirectory ${{ env.BUILD_DIR }}/c_samples
- name: Samples tests
run: |
Expand Down

0 comments on commit 317fe2c

Please sign in to comment.