Test Qt Dependencis

This commit is contained in:
2026-05-02 03:29:46 +03:00
parent e19dc85296
commit ca2fedc22e
Vendored
+2 -17
View File
@@ -2,22 +2,7 @@ pipeline {
agent none agent none
stages { stages {
stage('Build Linux') { stage('Build Windows Qt') {
agent { label 'linux' }
steps {
cleanWs()
checkout scm
sh '''
cmake -S . -B build/linux -G Ninja -DCMAKE_BUILD_TYPE=Release
cmake --build build/linux
'''
archiveArtifacts artifacts: 'build/linux/test_app', fingerprint: true
}
}
stage('Build Windows') {
agent { label 'windows' } agent { label 'windows' }
steps { steps {
cleanWs() cleanWs()
@@ -46,6 +31,6 @@ stage('Build Windows') {
archiveArtifacts artifacts: 'dist/windows/**', fingerprint: true archiveArtifacts artifacts: 'dist/windows/**', fingerprint: true
} }
} }
} }
} }