-
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docker images and add a EGL CI (#784)
* Add an egl build * fixup egl * Use another docker image * Adding egl dep * install meson * rename * update mesa * missing tool * missing * remove useless * wayland * ii * iii * upload * Just update ! * Add vtk patch * update docker image * remove * Fixup assimp * Increasing threshold for one test * fixup external * fixup * fixup clang * fixups * fixup again * Adding upload * update images * Add doc * commit * commit2
- Loading branch information
Showing
7 changed files
with
126 additions
and
9 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
.github/actions/assimp-install-dep/0001-Fix-librt-link.patch
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 7339dda7aba5e32be553fe252c9d4f322cd9bdfe Mon Sep 17 00:00:00 2001 | ||
From: Mathieu Westphal <[email protected]> | ||
Date: Thu, 4 May 2023 19:57:47 +0200 | ||
Subject: [PATCH] Fix librt link | ||
|
||
--- | ||
code/CMakeLists.txt | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/code/CMakeLists.txt b/code/CMakeLists.txt | ||
index b87bc665f..9230548ea 100644 | ||
--- a/code/CMakeLists.txt | ||
+++ b/code/CMakeLists.txt | ||
@@ -1327,7 +1327,7 @@ ENDIF() | ||
|
||
# Add RT-extension library for glTF importer with Open3DGC-compression. | ||
IF (RT_FOUND AND ASSIMP_IMPORTER_GLTF_USE_OPEN3DGC) | ||
- TARGET_LINK_LIBRARIES(assimp ${RT_LIBRARY}) | ||
+ TARGET_LINK_LIBRARIES(assimp rt) | ||
ENDIF () | ||
|
||
|
||
-- | ||
2.40.1 | ||
|
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
50 changes: 50 additions & 0 deletions
50
.github/actions/vtk-install-dep/0001-fix-missing-limits-include.patch
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
From c30cbb45765c6f5369040a6fa2f80d8aed5687b4 Mon Sep 17 00:00:00 2001 | ||
From: Mathieu Westphal <[email protected]> | ||
Date: Thu, 4 May 2023 08:26:04 +0200 | ||
Subject: [PATCH] fix missing limits include | ||
|
||
--- | ||
Common/Core/vtkGenericDataArrayLookupHelper.h | 1 + | ||
Common/DataModel/vtkPiecewiseFunction.cxx | 1 + | ||
Rendering/Core/vtkColorTransferFunction.cxx | 1 + | ||
3 files changed, 3 insertions(+) | ||
|
||
diff --git a/Common/Core/vtkGenericDataArrayLookupHelper.h b/Common/Core/vtkGenericDataArrayLookupHelper.h | ||
index f278e27c0f..06995f4780 100644 | ||
--- a/Common/Core/vtkGenericDataArrayLookupHelper.h | ||
+++ b/Common/Core/vtkGenericDataArrayLookupHelper.h | ||
@@ -27,6 +27,7 @@ | ||
#include <cmath> | ||
#include <unordered_map> | ||
#include <vector> | ||
+#include <limits> | ||
|
||
namespace detail | ||
{ | ||
diff --git a/Common/DataModel/vtkPiecewiseFunction.cxx b/Common/DataModel/vtkPiecewiseFunction.cxx | ||
index c75935fd19..dfc6b04f76 100644 | ||
--- a/Common/DataModel/vtkPiecewiseFunction.cxx | ||
+++ b/Common/DataModel/vtkPiecewiseFunction.cxx | ||
@@ -24,6 +24,7 @@ | ||
#include <iterator> | ||
#include <set> | ||
#include <vector> | ||
+#include <limits> | ||
|
||
vtkStandardNewMacro(vtkPiecewiseFunction); | ||
|
||
diff --git a/Rendering/Core/vtkColorTransferFunction.cxx b/Rendering/Core/vtkColorTransferFunction.cxx | ||
index 40504e5398..e1e0f25187 100644 | ||
--- a/Rendering/Core/vtkColorTransferFunction.cxx | ||
+++ b/Rendering/Core/vtkColorTransferFunction.cxx | ||
@@ -23,6 +23,7 @@ | ||
#include <iterator> | ||
#include <set> | ||
#include <vector> | ||
+#include <limits> | ||
|
||
vtkStandardNewMacro(vtkColorTransferFunction); | ||
|
||
-- | ||
2.40.1 | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
# False positive with Qt test | ||
race:libQt5Core | ||
race:libQt5XcbQpa | ||
|
||
# Issue in mesa sw_rast | ||
race:swrast_dri |
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