Remove jenkins integration

This commit is contained in:
simon987 2020-01-03 16:54:04 -05:00
parent 017ed14462
commit 46c4531182
3 changed files with 0 additions and 99 deletions

View File

@ -1,7 +1,6 @@
<a href='https://github.com/jpoles1/gopherbadger' target='_blank'>![gopherbadger-tag-do-not-edit](https://img.shields.io/badge/Go%20Coverage-68%25-brightgreen.svg?longCache=true&style=flat-square)</a>
[![CodeFactor](https://www.codefactor.io/repository/github/simon987/task_tracker/badge)](https://www.codefactor.io/repository/github/simon987/task_tracker)
[![Build Status](https://ci.simon987.net/buildStatus/icon?job=task_tracker)](https://ci.simon987.net/job/task_tracker/)
Fast task tracker (job queue) with authentication, statistics and web frontend

87
jenkins/Jenkinsfile vendored
View File

@ -1,87 +0,0 @@
def remote = [:]
remote.name = 'remote'
remote.host = env.DEPLOY_HOST
remote.user = env.DEPLOY_USER
remote.identityFile = '/var/lib/jenkins/.ssh/id_rsa'
remote.knownHosts = '/var/lib/jenkins/.ssh/known_hosts'
remote.allowAnyHosts = true
remote.retryCount = 3
remote.retryWaitSec = 3
remote.port = 2299
logLevel = 'FINER'
pipeline {
agent none
environment {
GOOS='linux'
CGO_ENABLED='0'
HOME='.'
}
stages {
stage('Parallel build & test') {
failFast true
parallel {
stage('Build - web') {
agent {
docker {
image 'node:10-alpine'
args '--network "host"'
}
}
steps {
sh 'cd web/angular/ && npm install'
sh 'cd web/angular/ && ./node_modules/\\@angular/cli/bin/ng build --prod --optimization --output-path "${WORKSPACE}/webroot"'
stash includes: 'webroot/', name: 'webdist'
}
}
stage('Build - api') {
agent {
docker {
image 'golang:latest'
args '--network "host"'
}
}
steps {
sh 'mkdir -p /go/src/github.com/task_tracker'
sh 'cp -r api config main storage config.yml schema.sql "/go/src/github.com/task_tracker"'
sh 'cd /go/src/github.com/task_tracker/main && go get ./...'
sh 'cd /go/src/github.com/task_tracker/main && go build -a -installsuffix cgo -o "${WORKSPACE}/tt_api" .'
stash includes: 'tt_api', name: 'apidist'
}
}
stage('Test - api') {
agent {
docker {
image 'golang:latest'
args '--network "host"'
}
}
steps {
sh 'mkdir -p /go/src/github.com/task_tracker'
sh 'cp -r api config main storage test config.yml schema.sql "/go/src/github.com/task_tracker"'
sh 'cd /go/src/github.com/task_tracker/ && go get -t ./test/...'
sh 'cd /go/src/github.com/task_tracker/test && go test .'
}
}
}
}
stage('Deploy') {
agent none
steps {
node('master') {
unstash 'webdist'
unstash 'apidist'
sshCommand remote: remote, command: "cd task_tracker && rm -rf tt_api config.yml schema.sql webroot deploy.sh"
sshPut remote: remote, from: 'tt_api', into: 'task_tracker/tt_api'
sshPut remote: remote, from: 'config.yml', into: 'task_tracker/config.yml'
sshPut remote: remote, from: 'schema.sql', into: 'task_tracker/schema.sql'
sshPut remote: remote, from: 'webroot/', into: 'task_tracker'
sshPut remote: remote, from: 'jenkins/deploy.sh', into: 'task_tracker/'
sshCommand remote: remote, command: 'chmod +x task_tracker/deploy.sh && ./task_tracker/deploy.sh'
}
}
}
}
}

View File

@ -1,11 +0,0 @@
#!/bin/bash
export TTROOT="task_tracker"
chmod 755 -R "${TTROOT}/webroot"
screen -S tt_api -X quit
echo "starting client"
screen -S tt_api -d -m bash -c "cd ${TTROOT} && chmod +x tt_api && ./tt_api 2> stderr.txt"
sleep 1
screen -list