Compare commits

...

4 Commits

Author SHA1 Message Date
Uwe Jakobeit
c322eddf8a just touched for test 2026-03-29 16:22:51 +02:00
Uwe Jakobeit
1ecf83cdc2 just touched for test 2026-03-29 16:22:04 +02:00
Uwe Jakobeit
76eb6d0a93 just touched for test 2026-03-29 16:20:35 +02:00
Uwe Jakobeit
4480608260 just touched for test 2026-03-29 16:06:03 +02:00
2 changed files with 4 additions and 2 deletions

5
Jenkinsfile vendored
View File

@@ -1,13 +1,13 @@
pipeline {
agent any // Or use 'dockerfile' if running in a container
stages {
stage('Checkout') {
stage('Checkout-Jenkinsfile') {
steps {
// Checks out the source code from the configured Gitea SCM
checkout scm
}
}
stage('Clean') {
stage('Clean-Jenkinsfile') {
steps {
//sh 'rm -rf build'
echo "Building branch ${env.BRANCH_NAME}"
@@ -27,6 +27,7 @@ pipeline {
echo "Build project"
}
}
stage('Test') {
steps {
// Run the executable to verify it works

View File

@@ -1,5 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello from C++ with CMake!" << std::endl;
return 0;