Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
aiekick committed Nov 4, 2023
1 parent 976f514 commit 7e10a1b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ jobs:
run : sudo apt-get update && sudo apt-get install libgl1-mesa-dev libx11-dev libxi-dev libxrandr-dev libxinerama-dev libxcursor-dev
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_TEST=ON
- name: build
run: cmake --build build
- name: build DemoApp
run: cmake --build build --config Release -t ImGuiFileDialog_App
- name: CTest : build test app
run: cmake --build build --config Release -t ImGuiFileDialog_Test
- name: CTest
run: ctest --test-dir build --output-on-failure
- name: upload artifact
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/Osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_TEST=ON
- name: build
run: cmake --build build
- name: build DemoApp
run: cmake --build build --config Release -t ImGuiFileDialog_App
- name: CTest : build test app
run: cmake --build build --config Release -t ImGuiFileDialog_Test
- name: CTest
run: ctest --test-dir build --output-on-failure
- name: upload artifact
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/Win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ jobs:
run : git submodule update --init --recursive
- name: configure
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_TEST=ON
- name: build
run: cmake --build build --config Release
- name: build DemoApp
run: cmake --build build --config Release -t ImGuiFileDialog_App
- name: CTest : build test app
run: cmake --build build --config Release -t ImGuiFileDialog_Test
- name: CTest
run: ctest --test-dir build --output-on-failure
- name: upload artifact
Expand Down

0 comments on commit 7e10a1b

Please sign in to comment.