Delete old CI integrations
This commit is contained in:
parent
f8bc3d2231
commit
57b5590553
28
.drone.yml
28
.drone.yml
@ -1,28 +0,0 @@
|
|||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: default
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build and test
|
|
||||||
pull: never
|
|
||||||
image: erki/cpp-ubuntu:latest
|
|
||||||
commands:
|
|
||||||
- mkdir -p build
|
|
||||||
- cd build
|
|
||||||
- cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DWITH_TESTS=ON
|
|
||||||
- ninja
|
|
||||||
- ctest . --output-on-failure
|
|
||||||
- name: notify
|
|
||||||
image: plugins/matrix
|
|
||||||
settings:
|
|
||||||
homeserver:
|
|
||||||
from_secret: matrix_homeserver
|
|
||||||
roomid:
|
|
||||||
from_secret: matrix_roomid
|
|
||||||
username:
|
|
||||||
from_secret: matrix_username
|
|
||||||
password:
|
|
||||||
from_secret: matrix_password
|
|
||||||
when:
|
|
||||||
status:
|
|
||||||
- failure
|
|
||||||
50
Jenkinsfile
vendored
50
Jenkinsfile
vendored
@ -1,50 +0,0 @@
|
|||||||
pipeline {
|
|
||||||
agent {
|
|
||||||
label 'ubuntu'
|
|
||||||
}
|
|
||||||
|
|
||||||
stages {
|
|
||||||
stage("build && test") {
|
|
||||||
steps {
|
|
||||||
echo "Workspace: ${env.WORKSPACE}"
|
|
||||||
sh 'mkdir -p build'
|
|
||||||
|
|
||||||
dir("build") {
|
|
||||||
sh 'ls'
|
|
||||||
sh 'cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DSKULLC_WITH_TESTS=ON'
|
|
||||||
sh 'ninja'
|
|
||||||
sh 'ctest . -T test --output-on-failure --no-compress-output'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
archiveArtifacts (
|
|
||||||
artifacts: 'build/Testing/**/*.xml',
|
|
||||||
fingerprint: true
|
|
||||||
)
|
|
||||||
|
|
||||||
// Process the CTest xml output with the xUnit plugin
|
|
||||||
xunit (
|
|
||||||
testTimeMargin: '3000',
|
|
||||||
thresholdMode: 1,
|
|
||||||
thresholds: [
|
|
||||||
skipped(failureThreshold: '0'),
|
|
||||||
failed(failureThreshold: '0')
|
|
||||||
],
|
|
||||||
tools: [CTest(
|
|
||||||
pattern: 'build/Testing/**/*.xml',
|
|
||||||
deleteOutputFiles: true,
|
|
||||||
failIfNotNew: false,
|
|
||||||
skipNoTestFiles: true,
|
|
||||||
stopProcessingIfError: true
|
|
||||||
)]
|
|
||||||
)
|
|
||||||
|
|
||||||
// Clear the source and build dirs before next run
|
|
||||||
deleteDir()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,5 +0,0 @@
|
|||||||
[requires]
|
|
||||||
catch2/[>=2.0.0,<3.0.0]
|
|
||||||
|
|
||||||
[generators]
|
|
||||||
cmake_find_package
|
|
||||||
Loading…
x
Reference in New Issue
Block a user