1.6. Automated Builds (GitLab CI And Buildbot)

The Wireshark development team uses GitLab’s continuous integration (CI) system and Buildbot 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 and Buildbot operate 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”. Buildbot similarly colors successful jobs and steps green and failed ones red. Jobs and steps provide a link to the corresponding console logfile which provides additional information.

Release packages are built on the following platforms:

  • Windows Server 2019 x86-64 (Win32, little endian, Visual Studio 2019)
  • Windows Server 2019 x86-64 (Win64, little endian, Visual Studio 2019)
  • Ubuntu 18.04 x86-64 (Linux, little endian, gcc, Clang)
  • macOS 10.14 x86-64 (BSD, little endian, Clang)

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

  • Visual Studio Code Analysis (Win64, little endian, VS 2019)
  • Clang Code Analysis, Coverity Scan, and fuzz tests (Linux, little endian, Clang)

Each platform is represented at the status page by a single column, the most recent entries are at the top.