[UPD] : update readme for the new FileDialogConfig api #361
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Win | |
on: | |
push: | |
branches: | |
- DemoApp | |
paths-ignore: | |
- 'cmake/**' | |
- '.github/**' | |
- 'doc/**' | |
- 'samples/**' | |
jobs: | |
App_Win32_Dirent_FS: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: DemoApp | |
- name: checkout submodules | |
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: ctest | |
run: ctest --test-dir build --output-on-failure | |
- name: upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ImGuiFileDialog_App_Win32_Dirent_FS | |
path: build\Release\ImGuiFileDialog_App_Win32.exe | |
App_Win32_Std_FS: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: DemoApp | |
- name: checkout submodules | |
run : git submodule update --init --recursive | |
- name: configure | |
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_TEST=ON -DUSE_STD_FILESYSTEM=ON | |
- name: build | |
run: cmake --build build --config Release | |
- name: ctest | |
run: ctest --test-dir build --output-on-failure | |
- name: upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ImGuiFileDialog_App_Win32_Std_FS | |
path: build\Release\ImGuiFileDialog_App_Win32.exe | |
App_Win32_Boost_FS: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: DemoApp | |
- name: checkout submodules | |
run : git submodule update --init --recursive | |
- name: configure | |
run: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DUSE_TEST=ON -DUSE_BOOST_DEMO_FILESYSTEM=ON | |
- name: build | |
run: cmake --build build --config Release | |
- name: ctest | |
run: ctest --test-dir build --output-on-failure | |
- name: upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ImGuiFileDialog_App_Win32_Boost_FS | |
path: build\Release\ImGuiFileDialog_App_Win32.exe | |