Skip to content

Instantly share code, notes, and snippets.

View jhryniuk's full-sized avatar
🍨
I may be slow to respond.

jhryniuk

🍨
I may be slow to respond.
View GitHub Profile
@jhryniuk
jhryniuk / smoketests.sh
Last active May 25, 2017 11:45
Bash script to http smoke tests :D
#!/usr/bin/env bash
ADDRESSES=(
'http://www.wp.pl' #Here you insert addresses to test :D
)
function checkAddress
{
ADDRESS=$1
if curl -Is "${ADDRESS}" | grep -q 200; then
@jhryniuk
jhryniuk / Jenkinsfile
Created January 23, 2018 07:28
Jenkinsfile
String path = 'src/'
node('docker') {
ansiColor('xterm') {
stage('Checkout') {
checkout scm
}
stage('Pulling') {