1.6. Automated Builds (GitLab CI)

The Wireshark development team uses GitLab’s continuous integration (CI) system to automatically build Wireshark for each Git merge request and commit. Automated builds provide several useful services:

1.6.1. What Do The Automated Builds Do?

GitLab’s CI operates by running a series of steps and reporting success or failure. A typical CI job might do the following:

  1. Check out Wireshark from the source repository.
  2. Build Wireshark.
  3. Create a source tarball, binary package, or installer.
  4. Run regression tests.

GitLab’s CI marks successful jobs with a green checkmark and failed jobs with a red “X”. Jobs provide a link to the corresponding console logfile which provides additional information.

Release packages are built on the following platforms:

  • Windows Server 2022 x64, Visual Studio 2022
  • Windows 11 Arm64, Visual Studio 2022
  • Ubuntu 22.04 x64, gcc
  • macOS x64, clang
  • macOS Arm64, clang

Static code analysis and fuzz tests are run on the following platforms:

  • Visual Studio Code Analysis, Visual Studio 2022
  • Clang Code Analysis, Coverity Scan, and fuzz tests, clang