2019-10-23 17:10:47 +02:00
name : build
2019-10-30 15:10:43 +01:00
on :
2021-01-27 00:45:13 +01:00
push :
pull_request :
2021-02-16 09:33:29 +01:00
workflow_run :
# Use a workflow as a trigger of scheduled builds. Forked repositories can disable scheduled builds by disabling
# "scheduled" workflow, while maintaining ability to perform local CI builds.
workflows :
- scheduled
branches :
- master
- docking
types :
- requested
2019-10-23 17:10:47 +02:00
jobs :
Windows :
runs-on : windows-2019
env :
2020-01-20 14:57:39 +01:00
VS_PATH : C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\
2019-10-23 17:10:47 +02:00
MSBUILD_PATH : C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\
steps :
2024-02-01 16:07:29 +01:00
- uses : actions/checkout@v4
2019-10-23 17:10:47 +02:00
2019-10-30 10:30:46 +01:00
- name : Install Dependencies
shell : powershell
run : |
2023-02-07 11:54:50 +01:00
Invoke-WebRequest -Uri "https://www.libsdl.org/release/SDL2-devel-2.26.3-VC.zip" -OutFile "SDL2-devel-2.26.3-VC.zip"
Expand-Archive -Path SDL2-devel-2.26.3-VC.zip
echo "SDL2_DIR=$(pwd)\SDL2-devel-2.26.3-VC\SDL2-2.26.3\" >>${env:GITHUB_ENV}
2021-01-27 00:45:13 +01:00
2019-10-30 10:30:46 +01:00
Invoke-WebRequest -Uri "https://github.com/ocornut/imgui/files/3789205/vulkan-sdk-1.1.121.2.zip" -OutFile vulkan-sdk-1.1.121.2.zip
Expand-Archive -Path vulkan-sdk-1.1.121.2.zip
2021-01-27 00:45:13 +01:00
echo "VULKAN_SDK=$(pwd)\vulkan-sdk-1.1.121.2\" >>${env:GITHUB_ENV}
2019-10-30 10:30:46 +01:00
2019-10-23 17:10:47 +02:00
- name : Fix Projects
shell : powershell
run : |
2021-12-13 12:57:33 +01:00
# CI workers do not supporter older Visual Studio versions. Fix projects to target newer available version.
2019-10-23 17:10:47 +02:00
gci -recurse -filter "*.vcxproj" | ForEach-Object {
2021-12-13 12:57:33 +01:00
(Get-Content $_.FullName) -Replace "<PlatformToolset>v\d{3}</PlatformToolset>","<PlatformToolset>v142</PlatformToolset>" | Set-Content -Path $_.FullName
(Get-Content $_.FullName) -Replace "<WindowsTargetPlatformVersion>[\d\.]+</WindowsTargetPlatformVersion>","<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>" | Set-Content -Path $_.FullName
2019-10-23 17:10:47 +02:00
}
2019-10-30 09:45:27 +01:00
# Not using matrix here because it would inflate job count too much. Check out and setup is done for every job and that makes build times way too long.
2020-01-20 14:57:39 +01:00
- name : Build example_null (extra warnings, mingw 64-bit)
2020-03-19 11:10:58 +01:00
run : mingw32-make -C examples/example_null WITH_EXTRA_WARNINGS=1
2019-11-25 13:02:47 +01:00
2021-10-12 17:49:24 +02:00
- name : Build example_null (mingw 64-bit, as DLL)
shell : bash
run : |
echo '#ifdef _EXPORT' > example_single_file.cpp
echo '# define IMGUI_API __declspec(dllexport)' >> example_single_file.cpp
echo '#else' >> example_single_file.cpp
echo '# define IMGUI_API __declspec(dllimport)' >> example_single_file.cpp
echo '#endif' >> example_single_file.cpp
echo '#define IMGUI_IMPLEMENTATION' >> example_single_file.cpp
echo '#include "misc/single_file/imgui_single_file.h"' >> example_single_file.cpp
g++ -I. -Wall -Wformat -D_EXPORT -shared -o libimgui.dll -Wl,--out-implib,libimgui.a example_single_file.cpp -limm32
g++ -I. -Wall -Wformat -o example_null.exe examples/example_null/main.cpp -L. -limgui
rm -f example_null.exe libimgui.* example_single_file.*
2020-01-20 14:57:39 +01:00
- name : Build example_null (extra warnings, msvc 64-bit)
shell : cmd
run : |
cd examples\example_null
2020-12-02 11:23:56 +01:00
call "%VS_PATH%\VC\Auxiliary\Build\vcvars64.bat"
2020-11-18 21:05:52 +01:00
.\build_win32.bat /W4
2020-01-20 14:57:39 +01:00
2020-01-10 18:36:26 +01:00
- name : Build example_null (single file build)
shell : bash
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2021-02-24 09:26:13 +01:00
g++ -I. -Wall -Wformat -o example_single_file.exe example_single_file.cpp -limm32
2019-11-26 10:24:01 +01:00
2020-04-29 12:32:16 +02:00
- name : Build example_null (with IMGUI_DISABLE_WIN32_FUNCTIONS)
shell : bash
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_DISABLE_WIN32_FUNCTIONS
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2021-02-24 09:26:13 +01:00
g++ -I. -Wall -Wformat -o example_single_file.exe example_single_file.cpp -limm32
2020-04-29 12:32:16 +02:00
- name : Build example_null (as DLL)
shell : cmd
run : |
2020-12-02 11:23:56 +01:00
call "%VS_PATH%\VC\Auxiliary\Build\vcvars64.bat"
2021-01-27 00:45:13 +01:00
2020-11-18 21:05:52 +01:00
echo #ifdef _EXPORT > example_single_file.cpp
echo # define IMGUI_API __declspec(dllexport) >> example_single_file.cpp
echo #else >> example_single_file.cpp
echo # define IMGUI_API __declspec(dllimport) >> example_single_file.cpp
echo #endif >> example_single_file.cpp
echo #define IMGUI_IMPLEMENTATION >> example_single_file.cpp
echo #include "misc/single_file/imgui_single_file.h" >> example_single_file.cpp
2021-01-27 00:45:13 +01:00
2020-04-29 12:32:16 +02:00
cl.exe /D_USRDLL /D_WINDLL /D_EXPORT /I. example_single_file.cpp /LD /FeImGui.dll /link
cl.exe /I. ImGui.lib /Feexample_null.exe examples/example_null/main.cpp
2019-10-30 09:45:27 +01:00
- name : Build Win32 example_glfw_opengl2
2019-10-23 17:10:47 +02:00
shell : cmd
2019-10-30 09:45:27 +01:00
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj /p:Platform=Win32 /p:Configuration=Release'
2019-10-23 17:10:47 +02:00
2019-10-30 09:45:27 +01:00
- name : Build Win32 example_glfw_opengl3
2019-10-23 17:10:47 +02:00
shell : cmd
2019-10-30 09:45:27 +01:00
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj /p:Platform=Win32 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 09:45:27 +01:00
2019-10-30 10:30:46 +01:00
- name : Build Win32 example_glfw_vulkan
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj /p:Platform=Win32 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 10:30:46 +01:00
2023-02-07 11:54:50 +01:00
- name : Build Win32 example_sdl2_vulkan
2019-10-30 10:30:46 +01:00
shell : cmd
2023-02-07 11:54:50 +01:00
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj /p:Platform=Win32 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 10:30:46 +01:00
2023-02-07 11:54:50 +01:00
- name : Build Win32 example_sdl2_opengl2
2019-10-30 10:30:46 +01:00
shell : cmd
2023-02-07 11:54:50 +01:00
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj /p:Platform=Win32 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 10:30:46 +01:00
2023-02-07 11:54:50 +01:00
- name : Build Win32 example_sdl2_opengl3
2019-10-30 10:30:46 +01:00
shell : cmd
2023-02-07 11:54:50 +01:00
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj /p:Platform=Win32 /p:Configuration=Release'
2019-10-30 10:30:46 +01:00
2023-02-07 11:54:50 +01:00
- name : Build Win32 example_sdl2_directx11
2019-10-30 10:30:46 +01:00
shell : cmd
2023-02-07 11:54:50 +01:00
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj /p:Platform=Win32 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 10:30:46 +01:00
2019-10-30 09:45:27 +01:00
- name : Build Win32 example_win32_directx9
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_win32_directx9/example_win32_directx9.vcxproj /p:Platform=Win32 /p:Configuration=Release'
- name : Build Win32 example_win32_directx10
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_win32_directx10/example_win32_directx10.vcxproj /p:Platform=Win32 /p:Configuration=Release'
- name : Build Win32 example_win32_directx11
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_win32_directx11/example_win32_directx11.vcxproj /p:Platform=Win32 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 09:45:27 +01:00
- name : Build x64 example_glfw_opengl2
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_glfw_opengl2/example_glfw_opengl2.vcxproj /p:Platform=x64 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 09:45:27 +01:00
- name : Build x64 example_glfw_opengl3
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_glfw_opengl3/example_glfw_opengl3.vcxproj /p:Platform=x64 /p:Configuration=Release'
2019-10-30 10:30:46 +01:00
- name : Build x64 example_glfw_vulkan
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_glfw_vulkan/example_glfw_vulkan.vcxproj /p:Platform=x64 /p:Configuration=Release'
2023-02-07 11:54:50 +01:00
- name : Build x64 example_sdl2_vulkan
2019-10-30 10:30:46 +01:00
shell : cmd
2023-02-07 11:54:50 +01:00
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_sdl2_vulkan/example_sdl2_vulkan.vcxproj /p:Platform=x64 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 10:30:46 +01:00
2023-02-07 11:54:50 +01:00
- name : Build x64 example_sdl2_opengl2
2019-10-30 10:30:46 +01:00
shell : cmd
2023-02-07 11:54:50 +01:00
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_sdl2_opengl2/example_sdl2_opengl2.vcxproj /p:Platform=x64 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 10:30:46 +01:00
2023-02-07 11:54:50 +01:00
- name : Build x64 example_sdl2_opengl3
2019-10-30 10:30:46 +01:00
shell : cmd
2023-02-07 11:54:50 +01:00
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_sdl2_opengl3/example_sdl2_opengl3.vcxproj /p:Platform=x64 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 10:30:46 +01:00
2023-02-07 11:54:50 +01:00
- name : Build x64 example_sdl2_directx11
2019-10-30 10:30:46 +01:00
shell : cmd
2023-02-07 11:54:50 +01:00
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_sdl2_directx11/example_sdl2_directx11.vcxproj /p:Platform=x64 /p:Configuration=Release'
2019-10-30 10:30:46 +01:00
2019-10-30 09:45:27 +01:00
- name : Build x64 example_win32_directx9
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_win32_directx9/example_win32_directx9.vcxproj /p:Platform=x64 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 09:45:27 +01:00
- name : Build x64 example_win32_directx10
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_win32_directx10/example_win32_directx10.vcxproj /p:Platform=x64 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 09:45:27 +01:00
- name : Build x64 example_win32_directx11
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_win32_directx11/example_win32_directx11.vcxproj /p:Platform=x64 /p:Configuration=Release'
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 09:45:27 +01:00
- name : Build x64 example_win32_directx12
shell : cmd
run : '"%MSBUILD_PATH%\MSBuild.exe" examples/example_win32_directx12/example_win32_directx12.vcxproj /p:Platform=x64 /p:Configuration=Release'
2019-10-23 17:10:47 +02:00
Linux :
2023-02-07 20:17:18 +01:00
runs-on : ubuntu-22.04
2019-10-23 17:10:47 +02:00
steps :
2024-02-01 16:07:29 +01:00
- uses : actions/checkout@v4
2019-10-23 17:10:47 +02:00
- name : Install Dependencies
run : |
sudo apt-get update
2021-05-25 15:36:03 +02:00
sudo apt-get install -y libglfw3-dev libsdl2-dev gcc-multilib g++-multilib libfreetype6-dev libvulkan-dev
2019-10-23 17:10:47 +02:00
2019-11-26 11:17:58 +01:00
- name : Build example_null (extra warnings, gcc 32-bit)
run : |
make -C examples/example_null clean
2020-03-19 11:10:58 +01:00
CXXFLAGS="$CXXFLAGS -m32 -Werror" make -C examples/example_null WITH_EXTRA_WARNINGS=1
2019-11-26 11:17:58 +01:00
- name : Build example_null (extra warnings, gcc 64-bit)
run : |
make -C examples/example_null clean
2020-03-19 11:10:58 +01:00
CXXFLAGS="$CXXFLAGS -m64 -Werror" make -C examples/example_null WITH_EXTRA_WARNINGS=1
2019-11-26 11:17:58 +01:00
- name : Build example_null (extra warnings, clang 32-bit)
run : |
make -C examples/example_null clean
2020-03-19 11:10:58 +01:00
CXXFLAGS="$CXXFLAGS -m32 -Werror" CXX=clang++ make -C examples/example_null WITH_EXTRA_WARNINGS=1
2019-11-26 11:17:58 +01:00
- name : Build example_null (extra warnings, clang 64-bit)
run : |
make -C examples/example_null clean
2020-03-19 11:10:58 +01:00
CXXFLAGS="$CXXFLAGS -m64 -Werror" CXX=clang++ make -C examples/example_null WITH_EXTRA_WARNINGS=1
2019-10-30 09:45:27 +01:00
2021-08-27 15:06:59 +02:00
- name : Build example_null (extra warnings, empty IM_ASSERT)
run : |
cat > example_single_file.cpp <<'EOF'
#define IM_ASSERT(x)
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
g++ -I. -std=c++11 -Wall -Wformat -Wextra -Werror -Wno-zero-as-null-pointer-constant -Wno-double-promotion -Wno-variadic-macros -Wno-empty-body -o example_single_file example_single_file.cpp
2021-08-27 15:06:59 +02:00
2020-03-18 08:26:51 +01:00
- name : Build example_null (freetype)
run : |
make -C examples/example_null clean
make -C examples/example_null WITH_FREETYPE=1
2020-01-10 18:36:26 +01:00
- name : Build example_null (single file build)
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
g++ -I. -std=c++11 -Wall -Wformat -o example_single_file example_single_file.cpp
2020-03-03 17:45:06 +01:00
- name : Build example_null (with ImWchar32)
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_USE_WCHAR32
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
g++ -I. -std=c++11 -Wall -Wformat -o example_single_file example_single_file.cpp
2019-11-26 10:24:01 +01:00
2021-04-26 10:18:18 +02:00
- name : Build example_null (with large ImDrawIdx + pointer ImTextureID)
2020-03-16 09:04:36 +01:00
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
2021-04-26 10:18:18 +02:00
#define ImTextureID void*
2021-01-27 00:45:13 +01:00
#define ImDrawIdx unsigned int
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
g++ -I. -std=c++11 -Wall -Wformat -o example_single_file example_single_file.cpp
2020-03-16 09:04:36 +01:00
- name : Build example_null (with IMGUI_DISABLE_OBSOLETE_FUNCTIONS)
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_DISABLE_OBSOLETE_FUNCTIONS
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
g++ -I. -std=c++11 -Wall -Wformat -o example_single_file example_single_file.cpp
2020-03-16 09:04:36 +01:00
2022-01-03 20:52:52 +01:00
- name : Build example_null (with IMGUI_DISABLE_OBSOLETE_KEYIO)
run : |
cat > example_single_file.cpp <<'EOF'
#define IMGUI_DISABLE_OBSOLETE_KEYIO
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
g++ -I. -std=c++11 -Wall -Wformat -o example_single_file example_single_file.cpp
2022-01-03 20:52:52 +01:00
2022-06-15 15:58:26 +02:00
- name : Build example_null (with IMGUI_DISABLE_DEMO_WINDOWS and IMGUI_DISABLE_DEBUG_TOOLS)
2020-03-16 09:04:36 +01:00
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_DISABLE_DEMO_WINDOWS
2022-06-15 15:58:26 +02:00
#define IMGUI_DISABLE_DEBUG_TOOLS
2021-01-27 00:45:13 +01:00
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
g++ -I. -std=c++11 -Wall -Wformat -o example_single_file example_single_file.cpp
2020-03-16 09:04:36 +01:00
2020-04-29 12:32:16 +02:00
- name : Build example_null (with IMGUI_DISABLE_FILE_FUNCTIONS)
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_DISABLE_FILE_FUNCTIONS
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
g++ -I. -std=c++11 -Wall -Wformat -o example_single_file example_single_file.cpp
2020-04-29 12:32:16 +02:00
- name : Build example_null (with IMGUI_USE_BGRA_PACKED_COLOR)
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_USE_BGRA_PACKED_COLOR
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
g++ -I. -std=c++11 -Wall -Wformat -o example_single_file example_single_file.cpp
2020-04-29 12:32:16 +02:00
- name : Build example_null (with IM_VEC2_CLASS_EXTRA and IM_VEC4_CLASS_EXTRA)
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
struct MyVec2 { float x; float y; MyVec2(float x, float y) : x(x), y(y) { } };
struct MyVec4 { float x; float y; float z; float w;
MyVec4(float x, float y, float z, float w) : x(x), y(y), z(z), w(w) { } };
#define IM_VEC2_CLASS_EXTRA \
ImVec2(const MyVec2& f) { x = f.x; y = f.y; } \
operator MyVec2() const { return MyVec2(x, y); }
#define IM_VEC4_CLASS_EXTRA \
ImVec4(const MyVec4& f) { x = f.x; y = f.y; z = f.z; w = f.w; } \
operator MyVec4() const { return MyVec4(x, y, z, w); }
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
g++ -I. -std=c++11 -Wall -Wformat -o example_single_file example_single_file.cpp
2020-04-29 12:32:16 +02:00
2020-05-25 12:25:22 +02:00
- name : Build example_null (without c++ runtime, Clang)
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_IMPLEMENTATION
#define IMGUI_DISABLE_DEMO_WINDOWS
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
clang++ -I. -std=c++11 -Wall -Wformat -nodefaultlibs -fno-rtti -fno-exceptions -fno-threadsafe-statics -lc -lm -o example_single_file example_single_file.cpp
2020-05-25 12:25:22 +02:00
2019-10-30 09:45:27 +01:00
- name : Build example_glfw_opengl2
run : make -C examples/example_glfw_opengl2
- name : Build example_glfw_opengl3
run : make -C examples/example_glfw_opengl3
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 09:45:27 +01:00
2023-02-07 11:54:50 +01:00
- name : Build example_sdl2_opengl2
run : make -C examples/example_sdl2_opengl2
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 09:45:27 +01:00
2023-02-07 11:54:50 +01:00
- name : Build example_sdl2_opengl3
run : make -C examples/example_sdl2_opengl3
2019-10-23 17:10:47 +02:00
2021-05-25 15:36:03 +02:00
- name : Build with IMGUI_IMPL_VULKAN_NO_PROTOTYPES
2022-02-15 17:06:50 +01:00
run : g++ -c -I. -std=c++11 -DIMGUI_IMPL_VULKAN_NO_PROTOTYPES=1 backends/imgui_impl_vulkan.cpp
2021-05-25 15:36:03 +02:00
2019-10-23 17:10:47 +02:00
MacOS :
2021-02-16 09:33:29 +01:00
runs-on : macos-latest
2019-10-23 17:10:47 +02:00
steps :
2024-02-01 16:07:29 +01:00
- uses : actions/checkout@v4
2019-10-23 17:10:47 +02:00
- name : Install Dependencies
run : |
2021-01-27 00:45:13 +01:00
brew install glfw3 sdl2
2019-10-23 17:10:47 +02:00
2020-01-20 14:57:39 +01:00
- name : Build example_null (extra warnings, clang 64-bit)
2020-03-19 11:10:58 +01:00
run : make -C examples/example_null WITH_EXTRA_WARNINGS=1
2019-10-30 09:45:27 +01:00
2020-01-10 18:36:26 +01:00
- name : Build example_null (single file build)
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
clang++ -I. -std=c++11 -Wall -Wformat -o example_single_file example_single_file.cpp
2019-11-26 10:24:01 +01:00
2020-05-25 12:25:22 +02:00
- name : Build example_null (without c++ runtime)
run : |
2021-01-27 00:45:13 +01:00
cat > example_single_file.cpp <<'EOF'
#define IMGUI_IMPLEMENTATION
#include "misc/single_file/imgui_single_file.h"
#include "examples/example_null/main.cpp"
EOF
2022-02-15 17:06:50 +01:00
clang++ -I. -std=c++11 -Wall -Wformat -nodefaultlibs -fno-rtti -fno-exceptions -fno-threadsafe-statics -lc -lm -o example_single_file example_single_file.cpp
2020-05-25 12:25:22 +02:00
2019-10-30 09:45:27 +01:00
- name : Build example_glfw_opengl2
run : make -C examples/example_glfw_opengl2
- name : Build example_glfw_opengl3
run : make -C examples/example_glfw_opengl3
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 09:45:27 +01:00
- name : Build example_glfw_metal
run : make -C examples/example_glfw_metal
2023-02-07 11:54:50 +01:00
- name : Build example_sdl2_metal
run : make -C examples/example_sdl2_metal
2020-02-10 15:13:29 +01:00
2023-02-07 11:54:50 +01:00
- name : Build example_sdl2_opengl2
run : make -C examples/example_sdl2_opengl2
2021-02-16 09:33:29 +01:00
if : github.event_name == 'workflow_run'
2019-10-30 09:45:27 +01:00
2023-02-07 11:54:50 +01:00
- name : Build example_sdl2_opengl3
run : make -C examples/example_sdl2_opengl3
2019-10-30 09:45:27 +01:00
- name : Build example_apple_metal
run : xcodebuild -project examples/example_apple_metal/example_apple_metal.xcodeproj -target example_apple_metal_macos
- name : Build example_apple_opengl2
run : xcodebuild -project examples/example_apple_opengl2/example_apple_opengl2.xcodeproj -target example_osx_opengl2
2019-10-23 17:10:47 +02:00
iOS :
2021-02-16 09:33:29 +01:00
runs-on : macos-latest
2019-10-23 17:10:47 +02:00
steps :
2024-02-01 16:07:29 +01:00
- uses : actions/checkout@v4
2019-10-23 17:10:47 +02:00
2019-10-30 09:45:27 +01:00
- name : Build example_apple_metal
2019-10-23 17:10:47 +02:00
run : |
# Code signing is required, but we disable it because it is irrelevant for CI builds.
xcodebuild -project examples/example_apple_metal/example_apple_metal.xcodeproj -target example_apple_metal_ios CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO
Emscripten :
2023-02-07 20:17:18 +01:00
runs-on : ubuntu-22.04
2019-10-23 17:10:47 +02:00
steps :
2024-02-01 16:07:29 +01:00
- uses : actions/checkout@v4
2019-10-23 17:10:47 +02:00
- name : Install Dependencies
run : |
2019-11-04 08:50:50 +01:00
wget -q https://github.com/emscripten-core/emsdk/archive/master.tar.gz
tar -xvf master.tar.gz
emsdk-master/emsdk update
2023-07-13 12:46:40 +02:00
emsdk-master/emsdk install latest
emsdk-master/emsdk activate latest
2019-10-23 17:10:47 +02:00
2023-02-07 11:54:50 +01:00
- name : Build example_sdl2_opengl3 with Emscripten
2019-10-23 17:10:47 +02:00
run : |
2020-07-07 11:49:25 +02:00
pushd emsdk-master
source ./emsdk_env.sh
popd
2023-02-07 11:54:50 +01:00
make -C examples/example_sdl2_opengl3 -f Makefile.emscripten
2020-09-28 11:29:54 +02:00
2024-04-16 13:51:03 +02:00
- name : Build example_glfw_wgpu
2021-01-28 11:37:34 +01:00
run : |
pushd emsdk-master
source ./emsdk_env.sh
popd
2024-04-16 13:51:03 +02:00
make -C examples/example_glfw_wgpu -f Makefile.emscripten
2021-01-28 11:37:34 +01:00
2021-03-04 10:35:44 +01:00
Android :
2023-02-07 20:17:18 +01:00
runs-on : ubuntu-22.04
2021-03-04 10:35:44 +01:00
steps :
2024-02-01 16:07:29 +01:00
- uses : actions/checkout@v4
2021-03-04 10:35:44 +01:00
- name : Build example_android_opengl3
run : |
cd examples/example_android_opengl3/android
2023-03-07 07:17:56 +01:00
gradle assembleDebug --stacktrace