change to build for workflows
This commit is contained in:
33
Jenkinsfile
vendored
33
Jenkinsfile
vendored
@@ -1,5 +1,9 @@
|
||||
pipeline {
|
||||
agent any
|
||||
environment {
|
||||
GITEA_URL = 'https://git.wbell.dev'
|
||||
GITEA_REPO = 'Open-Argon/Chloride'
|
||||
}
|
||||
stages {
|
||||
stage('Checkout') {
|
||||
steps {
|
||||
@@ -8,27 +12,46 @@ pipeline {
|
||||
}
|
||||
}
|
||||
|
||||
stage('Detect Tag') {
|
||||
steps {
|
||||
script {
|
||||
if (env.GIT_BRANCH?.startsWith('refs/tags/')) {
|
||||
def tag = env.GIT_BRANCH.replace('refs/tags/', '')
|
||||
echo "Tag detected: ${tag}"
|
||||
|
||||
if (tag.toLowerCase().contains('unsable')) {
|
||||
echo "Tag contains 'unsable' → marking build UNSTABLE"
|
||||
currentBuild.result = 'UNSTABLE'
|
||||
}
|
||||
|
||||
// Expose for other stages
|
||||
env.TAG_NAME = tag
|
||||
} else {
|
||||
echo "Regular branch build: ${env.GIT_BRANCH}"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
stage('Setup Conan') {
|
||||
steps {
|
||||
sh '''
|
||||
python3 -m venv /tmp/venv
|
||||
. /tmp/venv/bin/activate
|
||||
apt update
|
||||
apt install -y cmake flex python3 python3-pip python3-venv
|
||||
python3 -m venv /tmp/venv
|
||||
. /tmp/venv/bin/activate
|
||||
pip install --upgrade pip
|
||||
pip install conan
|
||||
'''
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
stage('Setup Conan Profile') {
|
||||
steps {
|
||||
sh '''
|
||||
. /tmp/venv/bin/activate
|
||||
if [ ! -f ~/.conan2/profiles/default ]; then
|
||||
rm -rf ~/.conan2
|
||||
conan profile detect
|
||||
fi
|
||||
'''
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user