Compare commits

...

13 Commits

Author SHA1 Message Date
fc73df1d63 Merge branch 'release'
All checks were successful
gitea.arg.rip/vassago/pipeline/head This commit looks good
Conflicts:
	Jenkinsfile
2025-03-25 18:02:17 -04:00
e4384a2ea0 hopefully ready for release 2025-03-25 18:01:52 -04:00
be36c3cb55 mv the contents
All checks were successful
gitea.arg.rip/vassago/pipeline/head This commit looks good
2025-03-25 17:59:30 -04:00
1141118263 don't doublenest dist/
All checks were successful
gitea.arg.rip/vassago/pipeline/head This commit looks good
2025-03-25 17:51:20 -04:00
41172f755c how about not global then?
All checks were successful
gitea.arg.rip/vassago/pipeline/head This commit looks good
2025-03-25 17:40:03 -04:00
bcc5389d63 test commands. also install dotnet-ef
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit
although surely with dotnet tool list we could check, but it's cutely formatted
2025-03-25 17:30:18 -04:00
660af2805e ttttyyyypppppeeeee ssssslllloooowwwweeeerrrrrr for accuracy
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit
2025-03-25 17:18:40 -04:00
275faaacfc move out of test274's house
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit
2025-03-25 17:17:31 -04:00
09f439188a build to dist?
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit
2025-03-25 17:15:02 -04:00
246a6e2019 .toarray for .net8
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit
2025-03-25 17:12:38 -04:00
33f55dc790 .net 8
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit
2025-03-25 17:02:05 -04:00
b4b0fd155b fix cred strings
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit
2025-03-25 17:00:09 -04:00
7546612d12 hopefully ready for release
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit
2025-03-25 16:57:21 -04:00
3 changed files with 115 additions and 9 deletions

View File

@ -42,7 +42,7 @@ namespace vassago
ProtocolInterfaces.ProtocolList.twitchs.Add(t);
}
Task.WaitAll(initTasks, cancellationToken);
Task.WaitAll(initTasks.ToArray(), cancellationToken);
}
public Task StopAsync(CancellationToken cancellationToken)

120
Jenkinsfile vendored
View File

@ -1,7 +1,41 @@
pipeline {
agent any
environment {
linuxServiceAccount=credentials("a83b97d0-dbc6-42d9-96c9-f07a7f2dfab5")
linuxServiceAccountID="3ca1be00-3d9f-42a1-bab2-48a4d7b99fb0"
database_connectionString=credentials("7ab58922-c647-42e5-ae15-84faa0c1ee7d")
targetHost="alloces.lan"
}
stages {
stage("environment setup") { //my environment, here on the jenkins agent
steps {
script {
sh """#!/bin/bash
function testcmd(){
if ! command -v \$1 2>&1 >/dev/null
then
echo "this agent doesn't have \$1"
exit 1
fi
}
testcmd mktemp
testcmd curl
testcmd git
testcmd sed
testcmd ssh
testcmd ssh-keyscan
testcmd ssh-keygen
testcmd scp
testcmd dotnet
dotnet tool install dotnet-ef
"""
}
}
}
stage('clean old'){
steps{
sh 'rm -rf bin obj'
@ -9,17 +43,89 @@ pipeline {
}
stage('Build') {
steps {
sh 'dotnet publish vassago.csproj --configuration Release --os linux'
archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*'
dotnetBuild(outputDirectory: "./dist", project: "vassago.csproj")
archiveArtifacts artifacts: 'dist/*'
}
}
stage('Deploy'){
when{
stage ('upload') {
when {
//now my CI/CD is no longer continuous, it's just... automatic.
//(which is what I actually want tbh)
//but that does mean I have to put this condition in every single branch
branch "release"
}
steps{
withCredentials([sshUserPrivateKey(credentialsId: env.linuxServiceAccountID, keyFileVariable: 'PK')])
{
sh """#!/bin/bash
ssh -i \"${PK}\" -tt ${linuxServiceAccount_USR}@${targetHost} 'rm -rf temp_deploy & mkdir -p temp_deploy'
scp -i \"${PK}\" -r dist ${linuxServiceAccount_USR}@${env.targetHost}:temp_deploy
"""
}
}
}
stage ('stop')
{
when {
branch "release"
}
steps{
withCredentials([sshUserPrivateKey(credentialsId: env.linuxServiceAccountID, keyFileVariable: 'PK')])
{
sh """#!/bin/bash
ssh -i \"${PK}\" -tt ${linuxServiceAccount_USR}@${targetHost} 'systemctl --user stop vassago'
"""
}
}
}
stage ('update db')
{
when {
branch "release"
}
steps{
//TODO: backup database
sh """#!/bin/bash
"""
sh """#!/bin/bash
dotnet ef database update --connection "${env.database_connectionString}"
"""
//TODO: if updating the db fails, restore the old one
sh """#!/bin/bash
"""
}
}
stage ('replace')
{
when {
branch "release"
}
steps{
withCredentials([sshUserPrivateKey(credentialsId: env.linuxServiceAccountID, keyFileVariable: 'PK')])
{
sh """#!/bin/bash
ssh -i \"${PK}\" -tt ${linuxServiceAccount_USR}@${targetHost} 'mv dist/appsettings.json appsettings.json'
ssh -i \"${PK}\" -tt ${linuxServiceAccount_USR}@${targetHost} 'rm -rf dist/ && shopt -s dotglob & mv temp_deploy/* dist/'
ssh -i \"${PK}\" -tt ${linuxServiceAccount_USR}@${targetHost} 'mv appsettings.json dist/appsettings.json'
"""
}
}
}
stage ('spin up')
{
when {
branch "release"
}
steps{
withCredentials([sshUserPrivateKey(credentialsId: env.linuxServiceAccountID, keyFileVariable: 'PK')])
{
sh """#!/bin/bash
ssh -i \"${PK}\" -tt ${linuxServiceAccount_USR}@${targetHost} 'systemctl --user start vassago'
"""
}
}
}
}
}
}

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>$(NoWarn);CA2254</NoWarn>
</PropertyGroup>