mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-16 06:25:04 +08:00
Testing - Update CI workflow to build and test on Ubuntu with GCC (#1028)
- Replaced macOS Clang (No PCH) job with Ubuntu GCC (No PCH) job in the workflow dependency list - Updated the build job to use `ubuntu-24.04` runner with GCC compiler instead of `macos-15` with Clang - Updated the test job to run on Ubuntu with GCC instead of macOS with Clang
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
#include <GeomFill_CorrectedFrenet.hxx>
|
||||
#include <Geom_BSplineCurve.hxx>
|
||||
#include <Geom_Curve.hxx>
|
||||
#include <Geom_TrimmedCurve.hxx>
|
||||
#include <GeomAdaptor_Curve.hxx>
|
||||
#include <BRepAdaptor_CompCurve.hxx>
|
||||
#include <BRepBuilderAPI_MakeEdge.hxx>
|
||||
@@ -146,8 +147,8 @@ TEST(GeomFill_CorrectedFrenet, ActualReproducerCase)
|
||||
ShapeExtend_WireData anExtend;
|
||||
for (int i = 2; i <= aPoints.Length(); i++)
|
||||
{
|
||||
occ::handle<Geom_Curve> aCurve = GC_MakeSegment(aPoints(i - 1), aPoints(i)).Value();
|
||||
TopoDS_Edge anEdge = BRepBuilderAPI_MakeEdge(aCurve).Edge();
|
||||
occ::handle<Geom_TrimmedCurve> aCurve = GC_MakeSegment(aPoints(i - 1), aPoints(i)).Value();
|
||||
TopoDS_Edge anEdge = BRepBuilderAPI_MakeEdge(aCurve).Edge();
|
||||
anExtend.Add(anEdge);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user