1
0
mirror of synced 2025-01-11 16:24:16 +00:00
nomos-node/ci/Jenkinsfile.prs.linux
Giacomo Pasini 78c6566d8a
Add libp2p backend to nomos-node (#285)
* Add support for libp2p backend in integration tests

* Add support for libp2p in nomos-node

* change default to waku

* add mutually exclusive features warning

* disable default features to avoid unification

* disable default features

* remove leftover cargo build

* Make sure we are subscribed to libp2p topic at startup

* unify imports

* typo in ci config

* Sequential build and test steps for features

* Add RandomBeaconState to libp2p carnot variant

---------

Co-authored-by: Gusto <bacvinka@gmail.com>
2023-08-09 07:42:08 +02:00

67 lines
1.4 KiB
Plaintext

pipeline {
agent {
dockerfile {
label 'linux'
dir 'ci'
}
}
environment {
/* Avoid cache poisoning by other jobs. */
GOCACHE = "${env.WORKSPACE_TMP}/go-build"
GOPATH = "${env.WORKSPACE_TMP}/go"
}
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(
numToKeepStr: '20',
daysToKeepStr: '30',
))
}
stages {
stage('BuildAndTest') {
matrix {
axes {
axis {
name 'FEATURES'
values 'waku', 'libp2p'
}
}
stages {
stage('Check') {
steps {
sh "cargo check --all --no-default-features --features ${FEATURES}"
sh "cargo fmt -- --check"
sh "cargo clippy --all --no-default-features --features ${FEATURES} -- --deny warnings"
}
}
stage('BuildAndTest') {
options {
lock("sync-features")
}
stages {
stage('Build') {
steps {
sh "cargo build --all --no-default-features --features ${FEATURES}"
}
}
stage('Test') {
steps {
sh "cargo test --all --no-default-features --features ${FEATURES}"
}
}
}
}
}
}
}
}
post {
cleanup { cleanWs() }
}
}