mirror of
https://github.com/apple/swift-nio.git
synced 2026-05-20 20:30:36 +00:00
f17f7e5909
# Motivation We have quite a lot of shell scripts in our repo and want to make sure that they all pass `shellcheck`. # Modification This PR adds a GH action workflow to the soundness script for `shellcheck` and fixes up all errors and warnings. # Result No more shell/bash discussions
39 lines
1.1 KiB
Bash
Executable File
39 lines
1.1 KiB
Bash
Executable File
#!/bin/bash
|
|
##===----------------------------------------------------------------------===##
|
|
##
|
|
## This source file is part of the SwiftNIO open source project
|
|
##
|
|
## Copyright (c) 2017-2018 Apple Inc. and the SwiftNIO project authors
|
|
## Licensed under Apache License v2.0
|
|
##
|
|
## See LICENSE.txt for license information
|
|
## See CONTRIBUTORS.txt for the list of SwiftNIO project authors
|
|
##
|
|
## SPDX-License-Identifier: Apache-2.0
|
|
##
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
(
|
|
# this sub-shell is where the actual test is run
|
|
set -eu
|
|
set -x
|
|
set -o pipefail
|
|
|
|
test="$1"
|
|
# shellcheck disable=SC2034 # Used by whatever we source transpile in
|
|
tmp="$2"
|
|
# shellcheck disable=SC2034 # Used by whatever we source transpile in
|
|
root="$3"
|
|
# shellcheck disable=SC2034 # Used by whatever we source transpile in
|
|
g_show_info="$4"
|
|
here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
# shellcheck source=IntegrationTests/test_functions.sh
|
|
source "$here/test_functions.sh"
|
|
# shellcheck source=/dev/null
|
|
source "$test"
|
|
wait
|
|
)
|
|
exit_code=$?
|
|
exit $exit_code
|