forked from bomctl/bomctl-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add steps to run command and optionally export database
Signed-off-by: Jonathan Howard <[email protected]>
- Loading branch information
1 parent
0783d93
commit 87799b6
Showing
5 changed files
with
215 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
#!/usr/bin/env bash | ||
# ----------------------------------------------------------------------------- | ||
# SPDX-FileCopyrightText: Copyright © 2024 bomctl a Series of LF Projects, LLC | ||
# SPDX-FileName: .github/scripts/run-command.sh | ||
# SPDX-FileType: SOURCE | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# ----------------------------------------------------------------------------- | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# ----------------------------------------------------------------------------- | ||
|
||
set -euo pipefail | ||
|
||
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]:-$0}")" &> /dev/null && pwd)" | ||
readonly SCRIPT_DIR | ||
|
||
# shellcheck source=/dev/null | ||
source "${SCRIPT_DIR}/utils.sh" | ||
|
||
readonly OLD_IFS="${IFS}" | ||
|
||
supported_cmds=(alias export fetch import list merge push tag version) | ||
|
||
IFS="|" pattern=${supported_cmds[*]} | ||
IFS="${OLD_IFS}" | ||
|
||
if [[ ! ${BOMCTL_COMMAND:=version} =~ (^$pattern) ]]; then | ||
IFS="," | ||
exit_with_error \ | ||
"Unsupported command: ${BOMCTL_COMMAND}. Supported subcommands: [${supported_cmds[*]}]" | ||
fi | ||
|
||
# Convert input args string to array. | ||
IFS=" " read -r -a BOMCTL_ARGS <<< "${BOMCTL_ARGS:=}" | ||
|
||
if [[ -n ${DATABASE_DIR:=} ]]; then | ||
BOMCTL_ARGS+=(--cache-dir "${DATABASE_DIR}") | ||
fi | ||
|
||
log_info "Running command: bomctl ${BOMCTL_COMMAND} ${BOMCTL_ARGS[*]}..." | ||
|
||
bomctl "$BOMCTL_COMMAND" "${BOMCTL_ARGS[@]}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters