pipeline {
    agent none
    stages {
        stage('CMake Debug build and unit tests') {
            agent {
                docker {
                    image 'juzzlin/qt5-18.04:latest'
                    args '--privileged -t -v $WORKSPACE:/dr2d'
                }
            }
            steps {
                sh "mkdir -p build-debug"
                sh "cd build-debug && cmake -DCMAKE_BUILD_TYPE=Debug .."
                sh "cd build-debug && cmake --build . --target all -- -j3 && ctest"
            }
        }
        stage('QMake build') {
            agent {
                docker {
                    image 'juzzlin/qt5-18.04:latest'
                    args '--privileged -t -v $WORKSPACE:/dr2d'
                }
            }
            steps {
                sh "mkdir -p build-qmake"
                sh "cd build-qmake && qmake .. && make -j3"
            }
        }
        stage('Debian package / Ubuntu 16.04') {
            agent {
                docker {
                    image 'juzzlin/qt5-16.04:latest'
                    args '--privileged -t -v $WORKSPACE:/dr2d'
                }
            }
            steps {
                sh "mkdir -p build"
                sh "cd build && cmake -D DISTRO_VERSION=Ubuntu-16.04 -D ReleaseBuild=ON -D CMAKE_BUILD_TYPE=Release .. && cmake --build . --target all -- -j3"
                sh "cd build && cpack -G DEB"
            }
            post {
                always {
                    archiveArtifacts artifacts: 'build/*.deb', fingerprint: true
                }
            }
        }
        stage('Debian package / Ubuntu 18.04') {
            agent {
                docker {
                    image 'juzzlin/qt5-18.04:latest'
                    args '--privileged -t -v $WORKSPACE:/dr2d'
                }
            }
            steps {
                sh "mkdir -p build"
                sh "cd build && cmake -D DISTRO_VERSION=Ubuntu-18.04 -D ReleaseBuild=ON -D CMAKE_BUILD_TYPE=Release .. && cmake --build . --target all -- -j3"
                sh "cd build && cpack -G DEB"
            }
            post {
                always {
                    archiveArtifacts artifacts: 'build/*.deb', fingerprint: true
                }
            }
        }
        stage('NSIS installer') {
            agent {
                docker {
                    image 'juzzlin/mxe-qt5-18.04:latest'
                    args '--privileged -t -v $WORKSPACE:/dr2d'
                }
            }
            steps {
                sh "./scripts/build-windows-installer"
            }
            post {
                always {
                    archiveArtifacts artifacts: '*.exe', fingerprint: true
                    archiveArtifacts artifacts: '*.zip', fingerprint: true
                }
            }
        }
    }
}

