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:
Pasukhin Dmitry
2026-01-24 12:03:19 +00:00
committed by GitHub
parent 3aeb4668f5
commit 1f251bb5ac
15 changed files with 79 additions and 69 deletions
@@ -240,8 +240,8 @@ NCollection_Array1<gp_Vec> GeomGridEval_Parabola::EvaluateGridDN(
NCollection_Array1<gp_Vec> aResult(1, aNb);
const gp_Parab& aParab = myGeom->Parab();
const gp_Dir& aXDir = aParab.XAxis().Direction();
const gp_Dir& aYDir = aParab.YAxis().Direction();
const gp_Dir aXDir = aParab.XAxis().Direction();
const gp_Dir aYDir = aParab.YAxis().Direction();
const double aFocal = aParab.Focal();
const double aXX = aXDir.X();