Compare commits

...

36 Commits

Author SHA1 Message Date
bucky 10fe82ab6a Merge pull request 'archive-deliverable' (#26) from archive-deliverable into master
Reviewed-on: #26
2023-10-17 18:12:37 -07:00
bucky 9812a92d59 remove ls 2023-10-17 18:09:17 -07:00
bucky e8b12c307a include ruby version 2023-10-17 18:06:36 -07:00
bucky ae00ac8672 forgot the .rb 2023-10-17 18:04:29 -07:00
bucky bf92201721 removed some unnecessary lines, and check what's in the current
directory
2023-10-17 18:02:40 -07:00
bucky 1f2e3d41dd syntax error extra - in there 2023-10-17 18:00:46 -07:00
bucky f31b6da49c include the .env file and remove the scret.rb file 2023-10-17 17:58:40 -07:00
bucky f32d153b69 simplified things? 2023-10-17 17:46:24 -07:00
bucky 15d9ade2cf remove EXPORT 2023-10-17 17:42:17 -07:00
bucky 4587c35806 just set it in the script 2023-10-17 17:40:23 -07:00
bucky 340614dadc echo outside catch error 2023-10-17 17:37:35 -07:00
bucky 8a0fef63b2 another try 2023-10-17 17:35:37 -07:00
bucky 8691d19e8d dump the zip file, let's see how it's working? 2023-10-17 17:32:50 -07:00
bucky 35d196bdc2 another shot accessing the new env var 2023-10-17 17:28:41 -07:00
bucky e2c3cb7035 access the ZIP_FILE variable properly? 2023-10-17 17:25:02 -07:00
bucky a69b3e4226 missed quote 2023-10-17 17:22:00 -07:00
bucky 36285b060b better try to set the environment 2023-10-17 17:19:31 -07:00
bucky a0a9e84b91 another try 2023-10-17 17:14:33 -07:00
bucky 01d9f9a21c another shot at setting the zip file name 2023-10-17 17:12:16 -07:00
bucky 621a777a46 update env vars
+ removed the app session secret. it's used where it is set
+ added zip file to make it easier to name the zip and reuse the name
2023-10-17 17:05:15 -07:00
bucky 6fbecd78a4 clean out unnecessary files a little easier 2023-10-17 10:39:17 -07:00
bucky 873b86a809 Merge pull request 'remove db files as well' (#25) from archive-deliverable into master
Reviewed-on: #25
2023-10-16 17:41:38 -07:00
bucky 47393a5ead remove db files as well 2023-10-16 17:30:11 -07:00
bucky 69c56ae31a Merge pull request 'archive-deliverable' (#24) from archive-deliverable into master
Reviewed-on: #24
2023-10-16 17:28:43 -07:00
bucky b2cdf60a32 Revert "simplify it a little"
This reverts commit 91f45965a0.
2023-10-16 17:23:50 -07:00
bucky 91f45965a0 simplify it a little 2023-10-16 17:18:06 -07:00
bucky 3097cb69aa clean the workspace when done 2023-10-16 17:04:23 -07:00
bucky eed17d61a3 use tmp as a staging place for building the tgz file 2023-10-16 16:35:56 -07:00
bucky 9e5a4069a4 wrapping all the commands in one script, hope it works? 2023-10-16 15:44:50 -07:00
bucky f8c20541d5 removed shopt, added that in jenkins user's .profile 2023-10-16 15:09:44 -07:00
bucky ee07312b86 another shot at getting local shell 2023-10-16 13:48:31 -07:00
bucky e4eabf8aa6 looking to see what shell is used 2023-10-16 12:06:11 -07:00
bucky 3ec0f0ff7b mkdir -p and wrapped the steps in a catch so the clean up happens 2023-10-16 12:01:10 -07:00
bucky 27b32fc8f4 another shot 2023-10-16 11:57:20 -07:00
bucky ceab408ec0 build deliverable, store it, and clean up afterwards 2023-10-16 10:54:52 -07:00
bucky b56b618a8c added stages to build a deliverable and then clean it up when done 2023-10-16 10:50:22 -07:00
Vendored
+29 -6
View File
@@ -2,19 +2,14 @@ pipeline {
agent any
environment {
APP_SESSION_SECRET = ''
DB_NAME = 'url_shortener.db'
}
stages {
stage('Init') {
steps {
sh 'rbenv local 3.2.2'
script {
env.APP_SESSION_SECRET = sh(script: 'ruby secret.rb', returnStdout: true)
}
sh 'echo "ENV[\\\"APP_SESSION_SECRET\\\"] ||= $(ruby secret.rb)" > .env.rb'
sh 'echo "ENV[\\\"DB_NAME\\\"] ||= \\\"${DB_NAME}\\\"" >> .env.rb'
sh 'cat .env.rb'
}
}
stage('Build dependencies') {
@@ -35,7 +30,6 @@ pipeline {
}
stage('Report results') {
steps {
archive(includes: 'pkg/*.gem')
publishHTML (target: [
allowMissing: false,
alwaysLinkToLastBuild: false,
@@ -46,6 +40,32 @@ pipeline {
reportTitles: 'Cucumber Results, RSpec Results, Test Coverage'])
}
}
stage('Build production deliverable') {
steps {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
sh ''' #!/usr/local/bin/bash
ZIP_FILE="url-shortener_$(date "+%Y-%m-%d_%H-%M-%S").tgz"
CUR_DIR=$(pwd)
mkdir -p /tmp/url-shortener
cp -R * /tmp/url-shortener
cp .env.rb /tmp/url-shortener/
cp .ruby-version /tmp/url-shortener/
cd /tmp/url-shortener
rm -rf features spec coverage db/*.db .git* Jenkinsfile *.html secret.rb
cd /tmp
tar -czvf $ZIP_FILE url-shortener/
mv /tmp/$ZIP_FILE $CUR_DIR/
'''
}
archiveArtifacts artifacts: '*.tgz'
}
}
stage('Clean up deliverable') {
steps {
sh 'rm -rf /tmp/url-shortener'
sh 'rm -rf *.tgz'
}
}
}
post {
success {
@@ -57,5 +77,8 @@ pipeline {
failure {
mattermostSend channel: 'git-messages', color: 'danger', message: "[${JOB_NAME}](${JOB_URL}) [#${BUILD_NUMBER}](${BUILD_URL}) ([Gitea](${GIT_URL}))", text: "Build Failed"
}
always {
cleanWs deleteDirs: true, patterns: [[pattern: '*', type: 'INCLUDE']]
}
}
}