diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-04-25 17:18:07 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-04-25 17:18:07 +0200 |
commit | a4e5bab9b2826ae50a48da275b6b441624aab50f (patch) | |
tree | 2e8e5cf19e980c33af8befce6aaf4e30517ca636 /.github/workflows/build.yml | |
parent | b76a0c4607e20402237346ddaa462325b6fc3605 (diff) |
Fix CI.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b7da4daf..ec76156bc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: true matrix: - os: ["ubuntu-latest", "ubuntu-18.04"] + os: ["ubuntu-latest", "ubuntu-20.04"] ndpid_gcrypt: ["-DNDPI_WITH_GCRYPT=OFF", "-DNDPI_WITH_GCRYPT=ON"] ndpid_zlib: ["-DENABLE_ZLIB=OFF", "-DENABLE_ZLIB=ON"] ndpi_min_version: ["4.6"] @@ -40,7 +40,7 @@ jobs: sanitizer: "-DENABLE_SANITIZER=ON" coverage: "-DENABLE_COVERAGE=OFF" - compiler: "gcc-7" - os: "ubuntu-18.04" + os: "ubuntu-20.04" sanitizer: "-DENABLE_SANITIZER=ON" coverage: "-DENABLE_COVERAGE=OFF" |