Add Docker support for Linux build testing

- Introduced a `Dockerfile` for setting up a minimal Ubuntu-based build environment with required dependencies.
- Added `docker-build.sh` script to simplify Linux build and test execution using Docker or Podman.
- Updated `DEVELOPER_GUIDE.md` with instructions for using Docker/Podman for Linux builds, including CI/CD integration examples.
This commit is contained in:
2026-02-17 16:35:52 -08:00
parent 9485d2aa24
commit 422b27b1ba
5 changed files with 176 additions and 3 deletions

View File

@@ -424,7 +424,7 @@ TEST (Migration_SyntaxHighlighter_Pattern)
break; // Should never happen
}
std::string line = buf.GetLineString(row);
EXPECT_TRUE(line.size() >= 0); // Always true, but validates access
// Successfully accessed line - size() is always valid for std::string
}
}