Compare commits

..

2 commits

Author SHA1 Message Date
7fe89dd051 ci: add support for docker in jenkins 2024-03-29 15:20:35 +01:00
e6bb63c807 ci: add Jenkinsfile 2024-03-29 15:15:39 +01:00
5 changed files with 39 additions and 18 deletions

29
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,29 @@
pipeline {
agent any
stages {
stage('Build') {
agent {
docker {
image 'crystallang/crystal:1.11.0-alpine'
reuseNode true
}
}
steps {
sh 'shards install'
sh 'shards build --production --static'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}

View file

@ -16,7 +16,7 @@ module GX
class Cli class Cli
Log = ::Log.for("cli") Log = ::Log.for("cli")
@config : GX::Config @config : GX::Config
def initialize def initialize
# Main execution starts here # Main execution starts here

View file

@ -31,6 +31,6 @@ Log.setup do |config|
end end
end end
cli = GX::Cli.new app = GX::Cli.new
cli.parse_command_line(ARGV) app.parse_command_line(ARGV)
cli.run app.run

View file

@ -13,7 +13,6 @@ module GX::Models
getter remote_user : String = "" getter remote_user : String = ""
getter remote_host : String = "" getter remote_host : String = ""
getter remote_port : String = "22" getter remote_port : String = "22"
getter options : Array(String) = [] of String
include Concerns::Base include Concerns::Base
@ -29,19 +28,13 @@ module GX::Models
mount_point_safe = @mount_point mount_point_safe = @mount_point
raise InvalidMountpointError.new("Invalid mount point") if mount_point_safe.nil? raise InvalidMountpointError.new("Invalid mount point") if mount_point_safe.nil?
options = [] of String
# merge sshfs options
@options.each do |option|
options.push("-o", option)
end
options.push("-p", remote_port)
options.push(
"#{@remote_user}@#{@remote_host}:#{@remote_path}",
mount_point_safe
)
process = Process.new( process = Process.new(
"sshfs", "sshfs",
options, [
"-p", remote_port,
"#{@remote_user}@#{@remote_host}:#{@remote_path}",
mount_point_safe,
],
input: STDIN, input: STDIN,
output: STDOUT, output: STDOUT,
error: STDERR error: STDERR
@ -50,4 +43,3 @@ module GX::Models
end end
end end
end end