-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cbb8a94
commit a69e39a
Showing
133 changed files
with
938 additions
and
656 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.3.1 | ||
7.3.0 |
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 |
---|---|---|
@@ -1,18 +1,10 @@ | ||
#!/usr/bin/env bash | ||
####################################### | ||
# Dev / Auth / GitHug / Login | ||
# | ||
# * Version: 1.2.0 | ||
# | ||
####################################### | ||
# Copyright [2023] [[email protected]] | ||
# Copyright SerDigital64 - https://github.com/serdigital64 | ||
# | ||
# 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 | ||
# | ||
# 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. | ||
|
@@ -63,9 +55,10 @@ function dev_auth_initialize() { | |
# | ||
|
||
[[ -n "$DEV_CICD_DEBUG" ]] && bl64_dbg_all_enable | ||
|
||
bl64_lib_script_version_set '1.2.1' | ||
bl64_msg_all_enable_verbose | ||
bl64_msg_show_batch_start 'dev-auth-github' | ||
|
||
bl64_msg_show_batch_start "$BL64_SCRIPT_ID" | ||
dev_auth_initialize && | ||
dev_auth_github | ||
bl64_msg_show_batch_finish $? 'dev-auth-github' | ||
bl64_msg_show_batch_finish $? "$BL64_SCRIPT_ID" |
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 |
---|---|---|
@@ -1,19 +1,10 @@ | ||
#!/usr/bin/env bash | ||
####################################### | ||
# Dev / Build / Bash / Assemble modular script | ||
# | ||
# * Use to build script from multiple sources (modular) | ||
# * Version: 4.0.2 | ||
# | ||
####################################### | ||
# Copyright [2023] [[email protected]] | ||
# Copyright SerDigital64 - https://github.com/serdigital64 | ||
# | ||
# 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 | ||
# | ||
# 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. | ||
|
@@ -70,9 +61,10 @@ function dev_build_initialize() { | |
# | ||
|
||
[[ -n "$DEV_CICD_DEBUG" ]] && bl64_dbg_all_enable | ||
|
||
bl64_lib_script_version_set '4.0.3' | ||
bl64_msg_all_enable_verbose | ||
bl64_msg_show_batch_start 'dev-build-bash' | ||
|
||
bl64_msg_show_batch_start "$BL64_SCRIPT_ID" | ||
dev_build_initialize && | ||
dev_build_bash | ||
bl64_msg_show_batch_finish $? 'dev-build-bash' | ||
bl64_msg_show_batch_finish $? "$BL64_SCRIPT_ID" |
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 |
---|---|---|
@@ -1,18 +1,11 @@ | ||
#!/usr/bin/env bash | ||
# * Version: 1.6.0 | ||
####################################### | ||
# Dev / Env / Bash / Shared environment variables | ||
# | ||
# * Version: 1.4.0 | ||
# | ||
####################################### | ||
# Copyright [2023] [[email protected]] | ||
# Copyright SerDigital64 - https://github.com/serdigital64 | ||
# | ||
# 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 | ||
# | ||
# 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. | ||
|
@@ -44,12 +37,28 @@ | |
export DEV_BUILD_BASH_MODULES="${DEV_BUILD_BASH_MODULES:-/dev/null}" | ||
# Lab / Bash / Default image | ||
export DEV_LAB_BASH_CONTAINER="${DEV_LAB_BASH_CONTAINER:-bash-test/alpine-3-bash-test}" | ||
# Test / Bash / Container where the test will run | ||
export DEV_TEST_BASH_CONTAINER="${DEV_TEST_BASH_CONTAINER:-bash-test/alpine-3-bash-test}" | ||
# Test / Bash / Path to test cases. Relative to DEV_PATH_ROOT | ||
export DEV_TEST_BASH_CASES="${DEV_BASE_TEST}/bash" | ||
# Test / Bash / Flag for marking container environment | ||
export DEV_TEST_BASH_CONTAINER_ENVIRONMENT='OFF' | ||
# Test / Bash / Flag for marking CICD runner environment | ||
export DEV_TEST_BASH_RUNNER_ENVIRONMENT='OFF' | ||
# Test / Bash / Flag for disabling container test, and run on local OS | ||
export DEV_TEST_BASH_CONTAINER_DISABLED='YES' | ||
# Test / Bash / Default test containers | ||
export DEV_TEST_BASH_CONTAINER="${DEV_TEST_BASH_CONTAINER:-bash-test/alpine-3-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_ALM="${DEV_TEST_BASH_CONTAINER_ALM:-bash-test/almalinux-9-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_ALP="${DEV_TEST_BASH_CONTAINER_ALP:-bash-test/alpine-3-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_AMZ="${DEV_TEST_BASH_CONTAINER_AMZ:-bash-test/amazonlinux-2023-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_CNT="${DEV_TEST_BASH_CONTAINER_CNT:-bash-test/centos-9-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_DEB="${DEV_TEST_BASH_CONTAINER_DEB:-bash-test/debian-11-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_FD="${DEV_TEST_BASH_CONTAINER_FD:-bash-test/fedora-39-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_KL="${DEV_TEST_BASH_CONTAINER_KL:-bash-test/kalilinux-2024.3-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_OEL="${DEV_TEST_BASH_CONTAINER_OEL:-bash-test/oraclelinux-9-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_RCK="${DEV_TEST_BASH_CONTAINER_RCK:-bash-test/rockylinux-9-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_RHEL="${DEV_TEST_BASH_CONTAINER_RHEL:-bash-test/rhel-9-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_SLES="${DEV_TEST_BASH_CONTAINER_SLES:-bash-test/sles-15-bash-test}" | ||
export DEV_TEST_BASH_CONTAINER_UB="${DEV_TEST_BASH_CONTAINER_UB:-bash-test/ubuntu-22.4-bash-test}" | ||
} | ||
|
||
# | ||
|
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
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
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 |
---|---|---|
@@ -1,18 +1,10 @@ | ||
#!/usr/bin/env bash | ||
####################################### | ||
# Dev / GIT / Close branch | ||
# | ||
# * Version: 2.1.1 | ||
# | ||
####################################### | ||
# Copyright [2023] [[email protected]] | ||
# Copyright SerDigital64 - https://github.com/serdigital64 | ||
# | ||
# 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 | ||
# | ||
# 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. | ||
|
@@ -64,9 +56,10 @@ function dev_git_initialize() { | |
declare dev_repo_branch_name="${1:-feature/update}" | ||
|
||
[[ -n "$DEV_CICD_DEBUG" ]] && bl64_dbg_all_enable | ||
|
||
bl64_lib_script_version_set '2.1.2' | ||
bl64_msg_all_enable_verbose | ||
bl64_msg_show_batch_start 'dev-git-branch-close' | ||
|
||
bl64_msg_show_batch_start "$BL64_SCRIPT_ID" | ||
dev_git_initialize && | ||
dev_repo_branch_close "$dev_repo_branch_name" | ||
bl64_msg_show_batch_finish $? 'dev-git-branch-close' | ||
bl64_msg_show_batch_finish $? "$BL64_SCRIPT_ID" |
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 |
---|---|---|
@@ -1,18 +1,10 @@ | ||
#!/usr/bin/env bash | ||
####################################### | ||
# Dev / GIT / Create branch from main | ||
# | ||
# * Version: 3.1.1 | ||
# | ||
####################################### | ||
# Copyright [2023] [[email protected]] | ||
# Copyright SerDigital64 - https://github.com/serdigital64 | ||
# | ||
# 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 | ||
# | ||
# 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. | ||
|
@@ -67,9 +59,10 @@ function dev_git_initialize() { | |
declare dev_repo_branch_name="${1:-feature/update}" | ||
|
||
[[ -n "$DEV_CICD_DEBUG" ]] && bl64_dbg_all_enable | ||
|
||
bl64_lib_script_version_set '3.1.2' | ||
bl64_msg_all_enable_verbose | ||
bl64_msg_show_batch_start 'dev-git-branch-create' | ||
|
||
bl64_msg_show_batch_start "$BL64_SCRIPT_ID" | ||
dev_git_initialize && | ||
dev_repo_branch_create "$dev_repo_branch_name" | ||
bl64_msg_show_batch_finish $? 'dev-git-branch-create' | ||
bl64_msg_show_batch_finish $? "$BL64_SCRIPT_ID" |
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
Oops, something went wrong.