1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-02 08:17:50 +02:00

added woodpecker

This commit is contained in:
Ell 2023-07-10 14:35:47 +02:00
parent f8aae9f5c2
commit 053ad5967b
5 changed files with 37 additions and 52 deletions

View file

@ -113,6 +113,6 @@ resharper_xmldoc_attribute_indent = align_by_first_attribute
resharper_xmldoc_attribute_style = on_single_line
resharper_xmldoc_pi_attribute_style = on_single_line
[*.md]
[{*.md,*.yaml,*.yml}]
trim_trailing_whitespace = false
indent_size = 2

16
.woodpecker/build.yml Normal file
View file

@ -0,0 +1,16 @@
steps:
build:
image: runmymind/docker-android-sdk:ubuntu-standalone
commands:
# install xvfb to allow for graphics-dependent tests
- apt-get update && apt-get install -y --no-install-recommends xauth xvfb openjdk-11-jdk
# install dotnet
- curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --version 7.0.305
- export DOTNET_ROOT=$HOME/.dotnet
- export PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools
# run cake
- dotnet tool restore
- xvfb-run -a dotnet cake --target Publish --branch $CI_COMMIT_BRANCH
secrets:
- nuget_key
- baget_key

16
.woodpecker/docs.yml Normal file
View file

@ -0,0 +1,16 @@
steps:
document:
image: mcr.microsoft.com/dotnet/sdk:7.0.305
commands:
- dotnet tool restore
- dotnet cake --target Document --branch $CI_COMMIT_BRANCH
deploy:
image: debian:latest
when:
- event: [push, manual]
branch: release
commands:
- rm -rfv /var/www/MLEM/*
- cp -rv Docs/_site/. /var/www/MLEM/
volumes:
- /var/www/MLEM:/var/www/MLEM

48
Jenkinsfile vendored
View file

@ -1,48 +0,0 @@
pipeline {
agent none
stages {
stage('Cake') {
agent any
stages {
stage('Submodules') {
steps {
sh 'git submodule update --init --recursive --force'
}
}
stage('Build') {
steps {
sh 'dotnet tool restore'
// we use xvfb to allow for graphics-dependent tests
sh 'xvfb-run -a dotnet cake --target Publish --branch ' + env.BRANCH_NAME
}
}
stage('Document') {
steps {
sh 'dotnet cake --target Document --branch ' + env.BRANCH_NAME
stash includes: 'Docs/_site/**', name: 'site'
}
}
}
post {
always {
nunit testResultsPattern: '**/TestResults.xml'
cobertura coberturaReportFile: '**/coverage.cobertura.xml'
}
}
}
stage('Publish Docs') {
when { branch 'release' }
agent { label 'web' }
options { skipDefaultCheckout() }
steps {
unstash 'site'
sh 'rm -rf /var/www/MLEM/*'
sh 'cp Docs/_site/** /var/www/MLEM/ -r'
}
}
}
environment {
BAGET = credentials('3db850d0-e6b5-43d5-b607-d180f4eab676')
NUGET = credentials('e1bf7f6c-6047-4f7e-b639-15240a8f8351')
}
}

View file

@ -9,11 +9,12 @@ var config = Argument("configuration", "Release");
var serve = HasArgument("serve");
Task("Prepare").Does(() => {
DotNetWorkloadInstall("android");
DotNetRestore("MLEM.sln");
DotNetRestore("MLEM.FNA.sln");
if (branch != "release") {
var buildNum = EnvironmentVariable("BUILD_NUMBER");
var buildNum = EnvironmentVariable("CI_PIPELINE_NUMBER");
if (buildNum != null)
version += "-ci." + buildNum;
}
@ -53,12 +54,12 @@ Task("Push").WithCriteria(branch == "main" || branch == "release").IsDependentOn
if (branch == "release") {
settings = new NuGetPushSettings {
Source = "https://api.nuget.org/v3/index.json",
ApiKey = EnvironmentVariable("NUGET")
ApiKey = EnvironmentVariable("NUGET_KEY")
};
} else {
settings = new NuGetPushSettings {
Source = "https://nuget.ellpeck.de/v3/index.json",
ApiKey = EnvironmentVariable("BAGET")
ApiKey = EnvironmentVariable("BAGET_KEY")
};
}
settings.SkipDuplicate = true;