mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
Linux GCC and Clang Jenkins build (#643)
* 1 * 1 * 1 * 1 * 1 * 1 * 1 * 1 * 1
This commit is contained in:
parent
7cdfa173c7
commit
b220ac765a
1 changed files with 20 additions and 0 deletions
20
Jenkinsfile
vendored
Normal file
20
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
parallel {
|
||||||
|
stage('GCC') {
|
||||||
|
steps {
|
||||||
|
sh 'mkdir -p build-linux-gcc && cd build-linux-gcc && qmake .. && make'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Clang') {
|
||||||
|
steps {
|
||||||
|
sh 'mkdir -p build-linux-clang && cd build-linux-clang && qmake -spec linux-clang .. && make'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue