Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Feb 4, 2025
1 parent c398597 commit 149d70d
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,23 +91,15 @@ jobs:
working_directory: ice-demos/cpp
msbuild_project: msbuild/ice.proj

- name: Build C++ Demos on ${{ matrix.os }} with CMake (Linux/MacOS)
if: runner.os != 'Windows'
- name: Generate C++ Build Systems on ${{ matrix.os }}
timeout-minutes: 5
working-directory: ice-demos/cpp
run:
find . -name CMakeLists.txt -execdir cmake -B build -S . ';'
find . -name CMakeLists.txt -execdir cmake --build build --config Release ';'
run: find . -name CMakeLists.txt -execdir cmake -B build -S . \;

- name: Build C++ Demos on ${{ matrix.os }} with CMake (Windows)
if: runner.os == 'Windows'
timeout-minutes: 5
- name: Build C++ Demos on ${{ matrix.os }}
timeout-minutes: 20
working-directory: ice-demos/cpp
run: |
Get-ChildItem -Recurse -Filter CMakeLists.txt | ForEach-Object {
cmake -B build -S $_.DirectoryName
cmake --build build --config Release
}
run: find . -name CMakeLists.txt -type d -execdir cmake --build build -- \;

- name: Build C# Demos on ${{ matrix.os }}
timeout-minutes: 20
Expand Down

0 comments on commit 149d70d

Please sign in to comment.