Files
Testing/Jenkinsfile
T
2026-05-01 21:23:00 +03:00

23 lines
439 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh '''
echo "Building project..."
mkdir -p build
g++ main.cpp -o build/test_app
'''
}
}
stage('Run') {
steps {
sh '''
./build/test_app
'''
}
}
}
}