blob: ecd7e6a88e76d240be60660325b0852311a6d168 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
pipeline {
agent any
stages {
stage('all targets')
{
parallel {
////////////////////////////////////////////////////
stage('Windows msvc') {
agent { label 'win10 && msvc' }
environment
{
VSDEVCMD="C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\Common7\\Tools\\VsDevCmd.bat"
}
steps {
echo 'Cleaning workspace ...'
bat 'git clean -d -x -f'
dir ('build/test') {
writeFile file:'dummy', text:''
}
bat '"%VSDEVCMD%" && bootstrap.bat'
echo 'Testing (msvc) ...'
bat 'ctor.exe check'
echo 'Testing suite (msvc) ...'
dir ('test/suite') {
bat '"%VSDEVCMD%" && test.bat'
}
}
post {
always {
xunit(thresholds: [ skipped(failureThreshold: '0'),
failed(failureThreshold: '0') ],
tools: [ CppUnit(pattern: 'build/test/*.xml') ])
}
}
}
////////////////////////////////////////////////////
stage('MacOSX clang') {
agent { label 'macos' }
steps {
echo 'Cleaning workspace ...'
sh 'git clean -d -x -f'
echo 'Building (clang) ...'
sh 'CXXFLAGS=-Werror CXX=/usr/local/opt/llvm/bin/clang++ LDFLAGS="-L/usr/local/opt/llvm/lib/c++ -L/usr/local/opt/llvm/lib/unwind -lunwind" ./bootstrap.sh'
echo 'Testing (clang) ...'
sh './ctor check'
echo 'Testing suite (clang) ...'
sh '(cd test/suite; /usr/local/opt/llvm/bin/clang++ -std=c++20 test.cc -L/usr/local/opt/llvm/lib/c++ -L/usr/local/opt/llvm/lib/unwind -lunwind -o test && CTORDIR=../../build CXXFLAGS=-Werror CXX=/usr/local/opt/llvm/bin/clang++ LDFLAGS="-L/usr/local/opt/llvm/lib/c++ -L/usr/local/opt/llvm/lib/unwind -lunwind" ./test)'
}
post {
always {
xunit(thresholds: [ skipped(failureThreshold: '0'),
failed(failureThreshold: '0') ],
tools: [ CppUnit(pattern: 'build/test/*.xml') ])
}
}
}
////////////////////////////////////////////////////
stage('Linux gcc') {
agent { label 'linux && gcc && c++20' }
steps {
echo 'Cleaning workspace ...'
sh 'git clean -d -x -f'
echo 'Building (gcc) ...'
sh 'CXXFLAGS=-Werror CXX=g++ ./bootstrap.sh'
echo 'Testing (gcc) ...'
sh './ctor check'
echo 'Testing suite (gcc) ...'
sh '(cd test/suite; g++ -std=c++20 test.cc -o test && CTORDIR=../../build CXXFLAGS=-Werror CXX=g++ ./test)'
}
post {
always {
xunit(thresholds: [ skipped(failureThreshold: '0'),
failed(failureThreshold: '0') ],
tools: [ CppUnit(pattern: 'build/test/*.xml') ])
}
}
}
////////////////////////////////////////////////////
stage('Linux clang') {
agent { label 'linux && clang && c++20' }
steps {
echo 'Cleaning workspace ...'
sh 'git clean -d -x -f'
echo 'Building (clang) ...'
sh 'CXXFLAGS=-Werror CXX=clang++ ./bootstrap.sh'
echo 'Testing (clang) ...'
sh './ctor check'
echo 'Testing suite (clang) ...'
sh '(cd test/suite; clang++ -std=c++20 test.cc -o test && CTORDIR=../../build CXXFLAGS=-Werror CXX=clang++ ./test)'
}
post {
always {
xunit(thresholds: [ skipped(failureThreshold: '0'),
failed(failureThreshold: '0') ],
tools: [ CppUnit(pattern: 'build/test/*.xml') ])
}
}
}
////////////////////////////////////////////////////
}
}
}
}
|