GitLab CI: Add a `tshark -G` artifact.

Dump `tshark -G fields` to a file and add it as an artifact. This
automates a step in the release process.
This commit is contained in:
Gerald Combs 2021-03-10 13:15:15 -08:00 committed by Wireshark GitLab Utility
parent 580812874a
commit e8421b1a0e
1 changed files with 6 additions and 0 deletions

View File

@ -65,6 +65,12 @@ clang-10: &clang-10
variables:
CC: clang-10
CXX: clang++-10
after_script:
- build/run/tshark -G fields > dfilter-list-$( git describe --match "v*" | sed -e 's/^v//' ).txt
artifacts:
paths:
- dfilter-list-*.txt
build:ubuntu-dist:
extends: .build-ubuntu