aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2023-01-12 17:33:08 +0000
committerJoão Valverde <j@v6e.pt>2023-01-12 21:04:37 +0000
commitaff45e6318920a7df997ecf9d16490ec010dec50 (patch)
tree99507128c5eb0e1d72b80bbc7798abb5ed7e2106 /tools
parenta07265f3c4ee94c373d1faa04c91d1a763573af4 (diff)
MSYS2: Update GitHub action
Diffstat (limited to 'tools')
-rw-r--r--tools/msys2-build.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/msys2-build.sh b/tools/msys2-build.sh
deleted file mode 100644
index 43a0ace0cd..0000000000
--- a/tools/msys2-build.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-# Build script for MSYS2
-#
-# Wireshark - Network traffic analyzer
-# By Gerald Combs <gerald@wireshark.org>
-# Copyright 1998 Gerald Combs
-#
-# SPDX-License-Identifier: GPL-2.0-or-later
-#
-
-mkdir build
-cd build
-
-cmake -G Ninja -DENABLE_WERROR=No .. || exit 1
-
-ninja || exit 1
-
-ninja test-programs || exit 1
-
-pytest