Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
74fe48cc4a | |||
6fe5b8e26a | |||
3d1eb9e03d | |||
bd554f1460 | |||
768bd1444e | |||
4ccb79f1e4 |
@ -4,7 +4,14 @@ version: 2.1
|
|||||||
orbs:
|
orbs:
|
||||||
python: circleci/python@2.1.1
|
python: circleci/python@2.1.1
|
||||||
|
|
||||||
|
|
||||||
executors:
|
executors:
|
||||||
|
archlinux:
|
||||||
|
docker:
|
||||||
|
- image: archlinux:base-devel
|
||||||
|
resource_class: small
|
||||||
|
working_directory: /
|
||||||
|
|
||||||
python:
|
python:
|
||||||
docker:
|
docker:
|
||||||
- image: cimg/python:3.11
|
- image: cimg/python:3.11
|
||||||
@ -16,30 +23,125 @@ executors:
|
|||||||
resource_class: medium
|
resource_class: medium
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
commands:
|
||||||
python-test:
|
archlinux-run:
|
||||||
executor: python
|
description: execute command steps in the archlinux container from the CI user
|
||||||
working_directory: ~/scwrypts/py/lib
|
parameters:
|
||||||
|
_name:
|
||||||
|
type: string
|
||||||
|
command:
|
||||||
|
type: string
|
||||||
|
working_directory:
|
||||||
|
type: string
|
||||||
|
default: /home/ci
|
||||||
steps:
|
steps:
|
||||||
- checkout:
|
|
||||||
path: ~/scwrypts
|
|
||||||
- run:
|
- run:
|
||||||
name: pytest
|
name: << parameters._name >>
|
||||||
|
working_directory: << parameters.working_directory >>
|
||||||
|
command: su ci -c '<< parameters.command >>'
|
||||||
|
|
||||||
|
|
||||||
|
custom:
|
||||||
|
archlinux:
|
||||||
|
prepare:
|
||||||
|
- &archlinux_prepare
|
||||||
|
run:
|
||||||
|
name: prepare archlinux dependencies
|
||||||
|
command: |
|
||||||
|
pacman --noconfirm -Syu git openssh ca-certificates-utils
|
||||||
|
useradd -m ci
|
||||||
|
echo "ci ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers
|
||||||
|
|
||||||
|
clone-aur:
|
||||||
|
- &archlinux_clone_aur
|
||||||
|
archlinux-run:
|
||||||
|
_name: clone aur/scwrypts
|
||||||
|
command: git clone https://aur.archlinux.org/scwrypts.git aur
|
||||||
|
|
||||||
|
clone-scwrypts:
|
||||||
|
- &archlinux_clone_scwrypts
|
||||||
|
run:
|
||||||
|
name: clone wrynegade/scwrypts
|
||||||
|
working_directory: /home/ci
|
||||||
|
command: |
|
||||||
|
GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" git clone -b "$CIRCLE_BRANCH" "$CIRCLE_REPOSITORY_URL" scwrypts
|
||||||
|
chown -R ci:ci ./scwrypts
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
require-full-semver:
|
||||||
|
executor: python
|
||||||
|
steps:
|
||||||
|
- run:
|
||||||
|
name: check CIRCLE_TAG for full semantic version
|
||||||
command: |
|
command: |
|
||||||
: \
|
: \
|
||||||
&& pip install . .[test] \
|
&& [ $CIRCLE_TAG ] \
|
||||||
&& pytest \
|
&& [[ $CIRCLE_TAG =~ ^v[0-9]*.[0-9]*.[0-9]*$ ]] \
|
||||||
;
|
;
|
||||||
- run: pip install build && python -m build
|
|
||||||
|
|
||||||
python-publish:
|
aur-test:
|
||||||
executor: python
|
executor: archlinux
|
||||||
working_directory: ~/scwrypts/py/lib
|
|
||||||
steps:
|
steps:
|
||||||
- checkout:
|
- *archlinux_prepare
|
||||||
path: ~/scwrypts
|
- *archlinux_clone_aur
|
||||||
- run: pip install build && python -m build
|
- *archlinux_clone_scwrypts
|
||||||
- run: pip install twine && twine upload dist/*
|
- archlinux-run:
|
||||||
|
_name: test aur build on current source
|
||||||
|
working_directory: /home/ci/aur
|
||||||
|
command: >-
|
||||||
|
:
|
||||||
|
&& PKGVER=$(sed -n "s/^pkgver=//p" ./PKGBUILD)
|
||||||
|
&& cp -r ../scwrypts ../scwrypts-$PKGVER
|
||||||
|
&& rm -rf ../scwrypts-$PKGVER/.circleci
|
||||||
|
&& rm -rf ../scwrypts-$PKGVER/.git
|
||||||
|
&& rm -rf ../scwrypts-$PKGVER/.gitattributes
|
||||||
|
&& rm -rf ../scwrypts-$PKGVER/.gitignore
|
||||||
|
&& rm -rf ../scwrypts-$PKGVER/.github
|
||||||
|
&& tar -czf scwrypts.tar.gz ../scwrypts-$PKGVER
|
||||||
|
&& echo "source=(scwrypts.tar.gz)" >> PKGBUILD
|
||||||
|
&& echo "sha256sums=(SKIP)" >> PKGBUILD
|
||||||
|
&& makepkg --noconfirm -si
|
||||||
|
&& scwrypts --version | grep "^scwrypts v$PKGVER$"
|
||||||
|
;
|
||||||
|
|
||||||
|
aur-publish:
|
||||||
|
executor: archlinux
|
||||||
|
steps:
|
||||||
|
- *archlinux_prepare
|
||||||
|
- *archlinux_clone_aur
|
||||||
|
- archlinux-run:
|
||||||
|
_name: update PKGBUILD and .SRCINFO
|
||||||
|
working_directory: /home/ci/aur
|
||||||
|
command: >-
|
||||||
|
:
|
||||||
|
&& NEW_VERSION=$(echo $CIRCLE_TAG | sed 's/^v//')
|
||||||
|
&& NEW_VERSION=4.2.0
|
||||||
|
&& sed "s/pkgver=.*/pkgver=$NEW_VERSION/; s/^pkgrel=.*/pkgrel=1/; /sha256sums/d" PKGBUILD -i
|
||||||
|
&& makepkg -g >> PKGBUILD
|
||||||
|
&& makepkg --printsrcinfo > .SRCINFO
|
||||||
|
;
|
||||||
|
- archlinux-run:
|
||||||
|
_name: sanity check for version build
|
||||||
|
working_directory: /home/ci/aur
|
||||||
|
command: >-
|
||||||
|
:
|
||||||
|
&& makepkg --noconfirm -si
|
||||||
|
&& scwrypts --version
|
||||||
|
&& scwrypts --version | grep -q "^scwrypts $CIRCLE_TAG\$"
|
||||||
|
;
|
||||||
|
- archlinux-run:
|
||||||
|
_name: publish new version
|
||||||
|
working_directory: /home/ci/aur
|
||||||
|
command: >-
|
||||||
|
:
|
||||||
|
&& git add PKGBUILD .SRCINFO
|
||||||
|
&& git -c user.email=yage@yage.io -c user.name=yage commit -am "$CIRCLE_TAG"
|
||||||
|
&& eval $(ssh-agent)
|
||||||
|
&& echo -e $SSH_KEY_PRIVATE__AUR | ssh-add -
|
||||||
|
&& git remote add upstream ssh://aur@aur.archlinux.org/scwrypts.git
|
||||||
|
&& echo 'DO THE GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no" git push upstream'
|
||||||
|
;
|
||||||
|
|
||||||
nodejs-test:
|
nodejs-test:
|
||||||
executor: nodejs
|
executor: nodejs
|
||||||
@ -108,51 +210,75 @@ jobs:
|
|||||||
&& pnpm publish --no-git-checks \
|
&& pnpm publish --no-git-checks \
|
||||||
;
|
;
|
||||||
|
|
||||||
|
python-test:
|
||||||
|
executor: python
|
||||||
|
working_directory: ~/scwrypts/py/lib
|
||||||
|
steps:
|
||||||
|
- checkout:
|
||||||
|
path: ~/scwrypts
|
||||||
|
- run:
|
||||||
|
name: pytest
|
||||||
|
command: |
|
||||||
|
: \
|
||||||
|
&& pip install . .[test] \
|
||||||
|
&& pytest \
|
||||||
|
;
|
||||||
|
- run: pip install build && python -m build
|
||||||
|
|
||||||
|
python-publish:
|
||||||
|
executor: python
|
||||||
|
working_directory: ~/scwrypts/py/lib
|
||||||
|
steps:
|
||||||
|
- checkout:
|
||||||
|
path: ~/scwrypts
|
||||||
|
- run: pip install build && python -m build
|
||||||
|
- run: pip install twine && twine upload dist/*
|
||||||
|
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
python-dev:
|
test:
|
||||||
jobs:
|
jobs:
|
||||||
- python-test:
|
- aur-test:
|
||||||
|
&dev_filters
|
||||||
filters:
|
filters:
|
||||||
branches:
|
branches:
|
||||||
ignore: /^main$/
|
ignore: /^main$/
|
||||||
|
|
||||||
python:
|
- python-test: *dev_filters
|
||||||
|
- nodejs-test: *dev_filters
|
||||||
|
|
||||||
|
publish:
|
||||||
jobs:
|
jobs:
|
||||||
- python-test:
|
- require-full-semver:
|
||||||
filters:
|
filters:
|
||||||
tags:
|
tags:
|
||||||
only: /^v\d+\.\d+\.\d+.*$/
|
only: /^v\d+\.\d+\.\d+.*$/
|
||||||
branches:
|
branches:
|
||||||
ignore: /^.*$/
|
ignore: /^.*$/
|
||||||
|
|
||||||
|
- aur-test:
|
||||||
|
&only-publish-for-full-semver
|
||||||
|
requires: [require-full-semver]
|
||||||
|
- aur-publish:
|
||||||
|
#
|
||||||
|
# there's a crazy-low-chance race-condition between this job and the GH Action '../.github/workflows/automatic-release.yaml'
|
||||||
|
# - automatic-release creates the release artifact, but takes no more than 15-30 seconds (current avg:16s max:26s)
|
||||||
|
# - this publish step requires the release artifact, but waits for all language-repository publishes to complete first (a few minutes at least)
|
||||||
|
#
|
||||||
|
# if something goes wrong, this step can be safely rerun after fixing the release artifact :)
|
||||||
|
#
|
||||||
|
context: [aur-yage]
|
||||||
|
requires:
|
||||||
|
- aur-test
|
||||||
|
- python-publish
|
||||||
|
- nodejs-publish
|
||||||
|
|
||||||
|
- python-test: *only-publish-for-full-semver
|
||||||
- python-publish:
|
- python-publish:
|
||||||
requires: [python-test]
|
requires:
|
||||||
context: [pypi-yage]
|
- python-test
|
||||||
filters:
|
|
||||||
tags:
|
|
||||||
only: /^v\d+\.\d+\.\d+.*$/
|
|
||||||
branches:
|
|
||||||
ignore: /^.*$/
|
|
||||||
|
|
||||||
nodejs-dev:
|
- nodejs-test: *only-publish-for-full-semver
|
||||||
jobs:
|
|
||||||
- nodejs-test:
|
|
||||||
filters:
|
|
||||||
branches:
|
|
||||||
ignore: /^main$/
|
|
||||||
|
|
||||||
nodejs:
|
|
||||||
jobs:
|
|
||||||
- nodejs-test:
|
|
||||||
filters:
|
|
||||||
tags:
|
|
||||||
only: /^v\d+\.\d+\.\d+.*$/
|
|
||||||
branches:
|
|
||||||
ignore: /^.*$/
|
|
||||||
- nodejs-publish:
|
- nodejs-publish:
|
||||||
requires: [nodejs-test]
|
requires:
|
||||||
context: [npm-wrynegade]
|
- nodejs-test
|
||||||
filters:
|
|
||||||
tags:
|
|
||||||
only: /^v\d+\.\d+\.\d+.*$/
|
|
||||||
branches:
|
|
||||||
ignore: /^.*$/
|
|
||||||
|
19
.github/workflows/automatic-release.yaml
vendored
Normal file
19
.github/workflows/automatic-release.yaml
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
---
|
||||||
|
name: Automatic Tag-release
|
||||||
|
|
||||||
|
on: # yamllint disable-line rule:truthy
|
||||||
|
push:
|
||||||
|
branches-ignore:
|
||||||
|
- '**'
|
||||||
|
tags:
|
||||||
|
- 'v*.*.*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
automatic-tag-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: marvinpinto/action-automatic-releases@latest
|
||||||
|
with:
|
||||||
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
prerelease: false
|
@ -171,7 +171,7 @@ _SCWRYPTS_KUBECTL_DRIVER() {
|
|||||||
|
|
||||||
[ $NAMESPACE ] && CLI_ARGS+=(--namespace $NAMESPACE)
|
[ $NAMESPACE ] && CLI_ARGS+=(--namespace $NAMESPACE)
|
||||||
[[ $VERBOSE -eq 1 ]] && {
|
[[ $VERBOSE -eq 1 ]] && {
|
||||||
INFO "
|
REMINDER "
|
||||||
context '$CONTEXT'
|
context '$CONTEXT'
|
||||||
namespace '$NAMESPACE'
|
namespace '$NAMESPACE'
|
||||||
environment '$SCWRYPTS_ENV'
|
environment '$SCWRYPTS_ENV'
|
||||||
@ -180,7 +180,7 @@ _SCWRYPTS_KUBECTL_DRIVER() {
|
|||||||
STATUS "running $CLI ${CLI_ARGS[@]} ${USER_ARGS[@]}"
|
STATUS "running $CLI ${CLI_ARGS[@]} ${USER_ARGS[@]}"
|
||||||
} || {
|
} || {
|
||||||
[[ $(_SCWRYPTS_KUBECTL_SETTINGS get context) =~ ^show$ ]] && {
|
[[ $(_SCWRYPTS_KUBECTL_SETTINGS get context) =~ ^show$ ]] && {
|
||||||
INFO "$SCWRYPTS_ENV.$SUBSESSION : $CLI ${CLI_ARGS[@]} ${USER_ARGS[@]}"
|
REMINDER "$SCWRYPTS_ENV.$SUBSESSION : $CLI ${CLI_ARGS[@]} ${USER_ARGS[@]}"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$CLI ${CLI_ARGS[@]} ${USER_ARGS[@]}
|
$CLI ${CLI_ARGS[@]} ${USER_ARGS[@]}
|
||||||
|
@ -112,8 +112,8 @@ KUBECTL__SERVE() {
|
|||||||
SERVICE_PASSWORD="$(KUBECTL__GET_SERVICE_PASSWORD)"
|
SERVICE_PASSWORD="$(KUBECTL__GET_SERVICE_PASSWORD)"
|
||||||
KUBECTL__SERVICE_PARSE
|
KUBECTL__SERVICE_PARSE
|
||||||
|
|
||||||
INFO "attempting to serve ${NAMESPACE}/${SERVICE_NAME}:${SERVICE_PORT}"
|
REMINDER "attempting to serve ${NAMESPACE}/${SERVICE_NAME}:${SERVICE_PORT}"
|
||||||
[ $SERVICE_PASSWORD ] && INFO "password : $SERVICE_PASSWORD"
|
[ $SERVICE_PASSWORD ] && REMINDER "password : $SERVICE_PASSWORD"
|
||||||
|
|
||||||
KUBECTL port-forward service/$SERVICE_NAME $SERVICE_PORT
|
KUBECTL port-forward service/$SERVICE_NAME $SERVICE_PORT
|
||||||
}
|
}
|
||||||
|
115
scwrypts
115
scwrypts
@ -1,12 +1,17 @@
|
|||||||
#!/bin/zsh
|
#!/bin/zsh
|
||||||
|
|
||||||
export EXECUTION_DIR=$(pwd)
|
export EXECUTION_DIR=$(pwd)
|
||||||
source "$(dirname $(readlink -f "$0"))/zsh/lib/import.driver.zsh" || exit 42
|
source "$(dirname $(readlink -f "$0"))/zsh/lib/import.driver.zsh" || exit 42
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
() {
|
() {
|
||||||
cd "$SCWRYPTS_ROOT__scwrypts"
|
cd "$SCWRYPTS_ROOT__scwrypts"
|
||||||
GIT_SCWRYPTS() { git -C "$SCWRYPTS_ROOT__scwrypts" $@; }
|
GIT_SCWRYPTS() { git -C "$SCWRYPTS_ROOT__scwrypts" $@; }
|
||||||
|
|
||||||
|
local INSTALLATION_TYPE
|
||||||
|
[ ! -d "$SCWRYPTS_ROOT__scwrypts/.git" ] && [ ! -f "$SCWRYPTS_ROOT__scwrypts/.git" ] \
|
||||||
|
&& INSTALLATION_TYPE=$(cat "$SCWRYPTS_ROOT__scwrypts/MANAGED_BY" 2>/dev/null) \
|
||||||
|
|| INSTALLATION_TYPE=manual \
|
||||||
|
;
|
||||||
|
|
||||||
local ERRORS=0
|
local ERRORS=0
|
||||||
local USAGE='
|
local USAGE='
|
||||||
usage: scwrypts [...options...] [...patterns...] -- [...script options...]
|
usage: scwrypts [...options...] [...patterns...] -- [...script options...]
|
||||||
@ -22,10 +27,10 @@ source "$(dirname $(readlink -f "$0"))/zsh/lib/import.driver.zsh" || exit 42
|
|||||||
-y, --yes auto-accept all [yn] prompts through current scwrypt
|
-y, --yes auto-accept all [yn] prompts through current scwrypt
|
||||||
-e, --env <env-name> set environment; overwrites SCWRYPTS_ENV
|
-e, --env <env-name> set environment; overwrites SCWRYPTS_ENV
|
||||||
-n shorthand for "--log-level 0"
|
-n shorthand for "--log-level 0"
|
||||||
-v, --log-level [0-4] set scwrypts log level to one of the following:
|
-v, --log-level [0-4] set incremental scwrypts log level to one of the following:
|
||||||
0 : only command output and critical failures; skips logfile
|
0 : only command output and critical failures; skips logfile
|
||||||
1 : add success / failure messages
|
1 : include success / failure messages
|
||||||
2 : include status update messages
|
2 : include status update messages
|
||||||
3 : (default) include warning messages
|
3 : (default) include warning messages
|
||||||
4 : include debug messages
|
4 : include debug messages
|
||||||
|
|
||||||
@ -60,7 +65,7 @@ source "$(dirname $(readlink -f "$0"))/zsh/lib/import.driver.zsh" || exit 42
|
|||||||
case $1 in
|
case $1 in
|
||||||
-[a-z][a-z]* )
|
-[a-z][a-z]* )
|
||||||
VARSPLIT=$(echo "$1 " | sed 's/^\(-.\)\(.*\) /\1 -\2/')
|
VARSPLIT=$(echo "$1 " | sed 's/^\(-.\)\(.*\) /\1 -\2/')
|
||||||
set -- $(echo " $VARSPLIT ") ${@:2}
|
set -- throw-away $(echo " $VARSPLIT ") ${@:2}
|
||||||
;;
|
;;
|
||||||
|
|
||||||
### alternate commands ###################
|
### alternate commands ###################
|
||||||
@ -81,30 +86,51 @@ source "$(dirname $(readlink -f "$0"))/zsh/lib/import.driver.zsh" || exit 42
|
|||||||
;;
|
;;
|
||||||
|
|
||||||
--version )
|
--version )
|
||||||
echo scwrypts $(GIT_SCWRYPTS describe --tags)
|
case $INSTALLATION_TYPE in
|
||||||
|
manual ) echo "scwrypts $(GIT_SCWRYPTS describe --tags) (via GIT)" ;;
|
||||||
|
* ) echo scwrypts $(cat "$SCWRYPTS_ROOT__scwrypts/VERSION") ;;
|
||||||
|
esac
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
|
|
||||||
--update )
|
--update )
|
||||||
GIT_SCWRYPTS fetch --quiet origin main
|
case $INSTALLATION_TYPE in
|
||||||
GIT_SCWRYPTS fetch --quiet origin main --tags
|
aur )
|
||||||
local SYNC_STATUS=$?
|
SCWRYPTS_LOG_LEVEL=3 REMINDER "
|
||||||
|
This installation is built from the AUR. Update through 'makepkg' or use
|
||||||
|
your preferred AUR package management tool (e.g. 'yay -Syu scwrypts')
|
||||||
|
"
|
||||||
|
;;
|
||||||
|
|
||||||
GIT_SCWRYPTS diff --exit-code origin/main -- . >/dev/null 2>&1
|
manual )
|
||||||
local DIFF_STATUS=$?
|
GIT_SCWRYPTS fetch --quiet origin main
|
||||||
|
GIT_SCWRYPTS fetch --quiet origin main --tags
|
||||||
|
local SYNC_STATUS=$?
|
||||||
|
|
||||||
[[ $SYNC_STATUS -eq 0 ]] && [[ $DIFF_STATUS -eq 0 ]] && {
|
GIT_SCWRYPTS diff --exit-code origin/main -- . >/dev/null 2>&1
|
||||||
SUCCESS 'already up-to-date with origin/main'
|
local DIFF_STATUS=$?
|
||||||
} || {
|
|
||||||
GIT_SCWRYPTS rebase --autostash origin/main \
|
[[ $SYNC_STATUS -eq 0 ]] && [[ $DIFF_STATUS -eq 0 ]] && {
|
||||||
&& SUCCESS 'up-to-date with origin/main' \
|
SUCCESS 'already up-to-date with origin/main'
|
||||||
&& GIT_SCWRYPTS log -n1 \
|
} || {
|
||||||
|| {
|
GIT_SCWRYPTS rebase --autostash origin/main \
|
||||||
GIT_SCWRYPTS rebase --abort
|
&& SUCCESS 'up-to-date with origin/main' \
|
||||||
ERROR 'unable to update scwrypts; please try manual upgrade'
|
&& GIT_SCWRYPTS log -n1 \
|
||||||
REMINDER "installation in '$(pwd)'"
|
|| {
|
||||||
|
GIT_SCWRYPTS rebase --abort
|
||||||
|
ERROR 'unable to update scwrypts; please try manual upgrade'
|
||||||
|
REMINDER "installation in '$SCWRYPTS_ROOT__scwrypts'"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
;;
|
||||||
|
|
||||||
|
* )
|
||||||
|
SCWRYPTS_LOG_LEVEL=3 REMINDER "
|
||||||
|
This is a managed installation of scwrypts. Please update through your
|
||||||
|
system package manager.
|
||||||
|
"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
return 0
|
return 0
|
||||||
;;
|
;;
|
||||||
|
|
||||||
@ -292,30 +318,32 @@ source "$(dirname $(readlink -f "$0"))/zsh/lib/import.driver.zsh" || exit 42
|
|||||||
|
|
||||||
[ ! $SUBSCWRYPT ] && export SUBSCWRYPT=0
|
[ ! $SUBSCWRYPT ] && export SUBSCWRYPT=0
|
||||||
|
|
||||||
[[ $SUBSCWRYPT -eq 0 ]] && [[ $ENV_NAME =~ prod ]] && [[ $SCWRYPTS_LOG_LEVEL -gt 0 ]] && {
|
[[ $INSTALLATION_TYPE =~ ^manual$ ]] && {
|
||||||
STATUS "on '$ENV_NAME'; checking diff against origin/main"
|
[[ $SUBSCWRYPT -eq 0 ]] && [[ $ENV_NAME =~ prod ]] && [[ $SCWRYPTS_LOG_LEVEL -gt 0 ]] && {
|
||||||
|
STATUS "on '$ENV_NAME'; checking diff against origin/main"
|
||||||
|
|
||||||
local WARNING_MESSAGE
|
local WARNING_MESSAGE
|
||||||
|
|
||||||
[ ! $WARNING_MESSAGE ] && {
|
[ ! $WARNING_MESSAGE ] && {
|
||||||
GIT_SCWRYPTS fetch --quiet origin main \
|
GIT_SCWRYPTS fetch --quiet origin main \
|
||||||
|| WARNING_MESSAGE='I am unable to verify your scwrypts version'
|
|| WARNING_MESSAGE='I am unable to verify your scwrypts version'
|
||||||
}
|
}
|
||||||
|
|
||||||
[ ! $WARNING_MESSAGE ] && {
|
[ ! $WARNING_MESSAGE ] && {
|
||||||
GIT_SCWRYPTS diff --exit-code origin/main -- . >/dev/null 2>&1 \
|
GIT_SCWRYPTS diff --exit-code origin/main -- . >/dev/null 2>&1 \
|
||||||
|| WARNING_MESSAGE='your scwrypts is currently out-of-date'
|
|| WARNING_MESSAGE='your scwrypts is currently out-of-date'
|
||||||
}
|
}
|
||||||
|
|
||||||
[ $WARNING_MESSAGE ] && {
|
[ $WARNING_MESSAGE ] && {
|
||||||
[[ $SCWRYPTS_LOG_LEVEL -lt 3 ]] && {
|
[[ $SCWRYPTS_LOG_LEVEL -lt 3 ]] && {
|
||||||
REMINDER "you are running in ${__BRIGHT_RED}production${__BRIGHT_MAGENTA} and $WARNING_MESSAGE"
|
REMINDER "you are running in ${__BRIGHT_RED}production${__BRIGHT_MAGENTA} and $WARNING_MESSAGE"
|
||||||
} || {
|
} || {
|
||||||
GIT_SCWRYPTS diff --exit-code origin/main -- . >&2
|
GIT_SCWRYPTS diff --exit-code origin/main -- . >&2
|
||||||
WARNING "you are trying to run in ${__BRIGHT_RED}production${__YELLOW} but $WARNING_MESSAGE (relevant diffs and errors above)"
|
WARNING "you are trying to run in ${__BRIGHT_RED}production${__YELLOW} but $WARNING_MESSAGE (relevant diffs and errors above)"
|
||||||
yN 'continue?' || {
|
yN 'continue?' || {
|
||||||
REMINDER "you can use 'scwrypts --update' to quickly update scwrypts to latest"
|
REMINDER "you can use 'scwrypts --update' to quickly update scwrypts to latest"
|
||||||
ABORT
|
ABORT
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -368,6 +396,7 @@ source "$(dirname $(readlink -f "$0"))/zsh/lib/import.driver.zsh" || exit 42
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
### run the scwrypt #################################################
|
### run the scwrypt #################################################
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
{
|
{
|
||||||
[ $HEADER ] && echo $HEADER
|
[ $HEADER ] && echo $HEADER
|
||||||
|
@ -1,8 +1,16 @@
|
|||||||
|
#####################################################################
|
||||||
|
|
||||||
|
command -v scwrypts &>/dev/null || {
|
||||||
|
echo 'scwrypts is required in your PATH in order to use the zsh plugins; skipping' >&2
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
NO_EXPORT_CONFIG=1 source "${0:a:h}/zsh/lib/import.driver.zsh" || return 42
|
NO_EXPORT_CONFIG=1 source "${0:a:h}/zsh/lib/import.driver.zsh" || return 42
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
SCWRYPTS__ZSH_PLUGIN() {
|
SCWRYPTS__ZSH_PLUGIN() {
|
||||||
local SCWRYPT_SELECTION=$(SCWRYPTS__GET_AVAILABLE_SCWRYPTS | FZF 'select a script' --header-lines 1)
|
local SCWRYPT_SELECTION=$(scwrypts --list | FZF 'select a script' --header-lines 1)
|
||||||
local NAME
|
local NAME
|
||||||
local TYPE
|
local TYPE
|
||||||
local GROUP
|
local GROUP
|
||||||
@ -22,8 +30,10 @@ zle -N scwrypts SCWRYPTS__ZSH_PLUGIN
|
|||||||
bindkey $SCWRYPTS_SHORTCUT scwrypts
|
bindkey $SCWRYPTS_SHORTCUT scwrypts
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
SCWRYPTS__ZSH_BUILDER_PLUGIN() {
|
SCWRYPTS__ZSH_BUILDER_PLUGIN() {
|
||||||
local SCWRYPT_SELECTION=$(SCWRYPTS__GET_AVAILABLE_SCWRYPTS | FZF 'select a script' --header-lines 1)
|
local SCWRYPT_SELECTION=$(scwrypts --list | FZF 'select a script' --header-lines 1)
|
||||||
|
echo $SCWRYPT_SELECTION >&2
|
||||||
local NAME
|
local NAME
|
||||||
local TYPE
|
local TYPE
|
||||||
local GROUP
|
local GROUP
|
||||||
@ -32,7 +42,7 @@ SCWRYPTS__ZSH_BUILDER_PLUGIN() {
|
|||||||
|
|
||||||
SCWRYPTS__SEPARATE_SCWRYPT_SELECTION $SCWRYPT_SELECTION
|
SCWRYPTS__SEPARATE_SCWRYPT_SELECTION $SCWRYPT_SELECTION
|
||||||
|
|
||||||
scwrypts --name $NAME --group $GROUP --type $TYPE -- --help >&2 || {
|
scwrypts -n --name $NAME --group $GROUP --type $TYPE -- --help >&2 || {
|
||||||
zle accept-line
|
zle accept-line
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
@ -49,6 +59,7 @@ zle -N scwrypts-builder SCWRYPTS__ZSH_BUILDER_PLUGIN
|
|||||||
bindkey $SCWRYPTS_BUILDER_SHORTCUT scwrypts-builder
|
bindkey $SCWRYPTS_BUILDER_SHORTCUT scwrypts-builder
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
SCWRYPTS__ZSH_PLUGIN_ENV() {
|
SCWRYPTS__ZSH_PLUGIN_ENV() {
|
||||||
local RESET='reset'
|
local RESET='reset'
|
||||||
local SELECTED=$(\
|
local SELECTED=$(\
|
||||||
|
@ -28,7 +28,7 @@ EKS() {
|
|||||||
local CONTEXT="arn:aws:eks:${AWS_REGION}:${AWS_ACCOUNT}:cluster/${CLUSTER_NAME}"
|
local CONTEXT="arn:aws:eks:${AWS_REGION}:${AWS_ACCOUNT}:cluster/${CLUSTER_NAME}"
|
||||||
|
|
||||||
kubectl config get-contexts | grep -q $CONTEXT \
|
kubectl config get-contexts | grep -q $CONTEXT \
|
||||||
|| EKS__CLUSTER_LOGIN -c $CLUSTER_NAME
|
|| EKS__CLUSTER_LOGIN -c $CLUSTER_NAME >/dev/null
|
||||||
|
|
||||||
local CONTEXT_ARGS=()
|
local CONTEXT_ARGS=()
|
||||||
case $1 in
|
case $1 in
|
||||||
|
@ -2,7 +2,12 @@
|
|||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
[ ! $SCWRYPTS_ROOT ] \
|
[ ! $SCWRYPTS_ROOT ] \
|
||||||
&& SCWRYPTS_ROOT="$(cd $(dirname "${0:a:h}"); git rev-parse --show-toplevel)"
|
&& SCWRYPTS_ROOT="$(cd $(dirname "${0:a:h}"); git rev-parse --show-toplevel 2>/dev/null)"
|
||||||
|
|
||||||
|
[ ! $SCWRYPTS_ROOT ] && [ -d /usr/share/scwrypts ] \
|
||||||
|
&& SCWRYPTS_ROOT=/usr/share/scwrypts
|
||||||
|
|
||||||
|
export SCWRYPTS_ROOT__scwrypts="$SCWRYPTS_ROOT"
|
||||||
|
|
||||||
#####################################################################
|
#####################################################################
|
||||||
|
|
||||||
@ -32,8 +37,7 @@ export \
|
|||||||
SCWRYPTS_OUTPUT_PATH \
|
SCWRYPTS_OUTPUT_PATH \
|
||||||
;
|
;
|
||||||
|
|
||||||
SCWRYPTS_GROUPS+=(scwrypts) # 'scwrypts' group is required!
|
SCWRYPTS_GROUPS=(scwrypts $(echo $SCWRYPTS_GROUPS | sed 's/\s\+/\n/g' | sort -u))
|
||||||
SCWRYPTS_GROUPS=($(echo $SCWRYPTS_GROUPS | sed 's/\s\+/\n/g' | sort -u))
|
|
||||||
|
|
||||||
source "$SCWRYPTS_ROOT/zsh/lib/config.group.zsh" \
|
source "$SCWRYPTS_ROOT/zsh/lib/config.group.zsh" \
|
||||||
|| FAIL 69 'failed to set up scwrypts group; aborting'
|
|| FAIL 69 'failed to set up scwrypts group; aborting'
|
||||||
|
@ -119,6 +119,27 @@ SCWRYPTS__GET_RUNSTRING__zsh() {
|
|||||||
|| SCWRYPT_FILENAME="$GROUP_PATH/$SCWRYPT_TYPE/$SCWRYPT_NAME" \
|
|| SCWRYPT_FILENAME="$GROUP_PATH/$SCWRYPT_TYPE/$SCWRYPT_NAME" \
|
||||||
;
|
;
|
||||||
|
|
||||||
|
SCWRYPTS__GET_RUNSTRING__zsh__generic "$SCWRYPT_FILENAME"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
SCWRYPTS__GET_RUNSTRING__zsh__generic() {
|
||||||
|
# boilerplate to allow
|
||||||
|
# - multiflag splitting (e.g. -abc = -a -b -c)
|
||||||
|
# - help flag injection (e.g. -h | --help)
|
||||||
|
# - default USAGE definition (allows USAGE__options style usage definition)
|
||||||
|
# - required MAIN() function wrapping
|
||||||
|
#
|
||||||
|
# this is available automatically in SCWRYPTS_GROUP declaration contexts
|
||||||
|
# (e.g. my-group.scwrypts.zsh)
|
||||||
|
local ZSH_FILENAME="$1"
|
||||||
|
[ $ZSH_FILENAME ] || {
|
||||||
|
ERROR '
|
||||||
|
to use SCWRYPTS__GET_RUNSTRING__zsh__generic, you must provide a
|
||||||
|
ZSH_FILENAME (arg $1) where the MAIN function is defined
|
||||||
|
'
|
||||||
|
return 1
|
||||||
|
}
|
||||||
printf "
|
printf "
|
||||||
source '$SCWRYPT_FILENAME'
|
source '$SCWRYPT_FILENAME'
|
||||||
CHECK_ENVIRONMENT
|
CHECK_ENVIRONMENT
|
||||||
@ -154,22 +175,6 @@ SCWRYPTS__GET_RUNSTRING__zsh() {
|
|||||||
done
|
done
|
||||||
MAIN \${MAIN_ARGS[@]}
|
MAIN \${MAIN_ARGS[@]}
|
||||||
} "
|
} "
|
||||||
|
|
||||||
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
SCWRYPTS__GET_RUNSTRING__zsh_v3() {
|
|
||||||
WARNING "scwrypts zsh/v3 runstrings are now deprecated; please update to scwrypts v4 format"
|
|
||||||
|
|
||||||
__CHECK_DEPENDENCY zsh || return 1
|
|
||||||
|
|
||||||
[ $(eval echo '$SCWRYPTS_TYPE__'$SCWRYPT_GROUP) ] \
|
|
||||||
&& echo "source $GROUP_PATH/$SCWRYPT_NAME" \
|
|
||||||
|| echo "source $GROUP_PATH/$SCWRYPT_TYPE/$SCWRYPT_NAME" \
|
|
||||||
;
|
|
||||||
|
|
||||||
return 0
|
|
||||||
}
|
}
|
||||||
|
|
||||||
SCWRYPTS__GET_RUNSTRING__py() {
|
SCWRYPTS__GET_RUNSTRING__py() {
|
||||||
|
@ -37,7 +37,7 @@ __CHECK_COREUTILS() {
|
|||||||
do
|
do
|
||||||
__CHECK_DEPENDENCY $UTIL || { ((MISSING_DEPENDENCY_COUNT+=1)); continue; }
|
__CHECK_DEPENDENCY $UTIL || { ((MISSING_DEPENDENCY_COUNT+=1)); continue; }
|
||||||
|
|
||||||
$UTIL --version 2>&1 | grep -q 'GNU' || {
|
$UTIL --version 2>&1 | grep 'GNU' | grep -qv 'BSD' || {
|
||||||
WARNING "non-GNU version of $UTIL detected"
|
WARNING "non-GNU version of $UTIL detected"
|
||||||
((NON_GNU_DEPENDENCY_COUNT+=1))
|
((NON_GNU_DEPENDENCY_COUNT+=1))
|
||||||
}
|
}
|
||||||
|
@ -40,18 +40,3 @@ FZF_USER_INPUT() { # allow user to type custom answers; reconfirm if ambiguous w
|
|||||||
echo $FZF_OUTPUT
|
echo $FZF_OUTPUT
|
||||||
[ $FZF_OUTPUT ]
|
[ $FZF_OUTPUT ]
|
||||||
}
|
}
|
||||||
|
|
||||||
#####################################################################
|
|
||||||
### vvv DEPRECATED vvv ##############################################
|
|
||||||
#####################################################################
|
|
||||||
|
|
||||||
FZF_HEAD() { # prefer user input over selected
|
|
||||||
WARNING 'FZF_HEAD is deprecated and will be unavailable in v4.2; please switch to FZF_USER_INPUT (drop-in fix!)'
|
|
||||||
FZF $@ --print-query | sed '/^$/d' | head -n1;
|
|
||||||
}
|
|
||||||
FZF_TAIL() { # prefer selected over user input
|
|
||||||
WARNING 'FZF_TAIL is deprecated and will be unavailable in v4.2; please switch to FZF_USER_INPUT (drop-in fix!)'
|
|
||||||
FZF $@ --print-query | sed '/^$/d' | tail -n1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#####################################################################
|
|
||||||
|
Reference in New Issue
Block a user