Skip to content

Instantly share code, notes, and snippets.

@brentlaster
Created February 4, 2024 13:35
Show Gist options
  • Save brentlaster/f1c922ff4266882f0e5f2982da053cde to your computer and use it in GitHub Desktop.
Save brentlaster/f1c922ff4266882f0e5f2982da053cde to your computer and use it in GitHub Desktop.
Code for test script for CICD in 3 weeks course from @getskillsnow
# Simple test script for greetings jar
set -e
java -jar build/libs/greetings-ci-$1.jar ${@:2} > output.bench
IFS=' ' read -ra ARR <<< "${@:2}"
for i in "${ARR[@]}"; do
grep "^$i$" output.bench
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment