2019-04-22 14:45:53 +01:00
|
|
|
pipeline {
|
|
|
|
agent {
|
2019-12-16 15:25:12 +00:00
|
|
|
docker {
|
2019-06-19 20:56:52 +01:00
|
|
|
label 'main'
|
2020-12-29 14:56:36 +00:00
|
|
|
image docker.build("storj-ci", "--pull git://github.com/storj/ci.git#main").id
|
2020-01-08 20:09:34 +00:00
|
|
|
args '-u root:root --cap-add SYS_PTRACE -v "/tmp/gomod":/go/pkg/mod -v "/tmp/npm":/npm --tmpfs "/tmp:exec,mode=777"'
|
2019-04-22 14:45:53 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-02 16:48:04 +01:00
|
|
|
options {
|
2021-02-22 15:31:07 +00:00
|
|
|
timeout(time: 36, unit: 'MINUTES')
|
2019-05-02 16:48:04 +01:00
|
|
|
}
|
2019-09-05 14:32:46 +01:00
|
|
|
environment {
|
2020-01-08 20:09:34 +00:00
|
|
|
NPM_CONFIG_CACHE = '/npm/cache'
|
2020-11-11 11:57:45 +00:00
|
|
|
GOTRACEBACK = 'all'
|
2020-11-13 14:52:34 +00:00
|
|
|
COCKROACH_MEMPROF_INTERVAL=0
|
2019-09-05 14:32:46 +01:00
|
|
|
}
|
2019-04-22 14:45:53 +01:00
|
|
|
stages {
|
|
|
|
stage('Build') {
|
|
|
|
steps {
|
|
|
|
checkout scm
|
2019-04-24 16:33:01 +01:00
|
|
|
|
2019-06-27 17:09:37 +01:00
|
|
|
sh 'mkdir -p .build'
|
2019-04-24 16:33:01 +01:00
|
|
|
|
|
|
|
// make a backup of the mod file in case, for later linting
|
|
|
|
sh 'cp go.mod .build/go.mod.orig'
|
2019-10-11 15:30:06 +01:00
|
|
|
|
2019-04-24 16:33:01 +01:00
|
|
|
// download dependencies
|
2019-04-22 14:45:53 +01:00
|
|
|
sh 'go mod download'
|
|
|
|
|
2019-10-11 15:30:06 +01:00
|
|
|
sh 'service postgresql start'
|
|
|
|
|
2020-02-03 14:40:07 +00:00
|
|
|
sh 'make -j4 build-packages'
|
2019-04-22 14:45:53 +01:00
|
|
|
sh 'make install-sim'
|
2019-11-22 19:59:46 +00:00
|
|
|
|
2020-11-13 14:52:34 +00:00
|
|
|
dir(".build") {
|
|
|
|
sh 'cockroach start-single-node --insecure --store=type=mem,size=2GiB --listen-addr=localhost:26256 --http-addr=localhost:8086 --cache 512MiB --max-sql-memory 512MiB --background'
|
|
|
|
sh 'cockroach start-single-node --insecure --store=type=mem,size=2GiB --listen-addr=localhost:26257 --http-addr=localhost:8087 --cache 512MiB --max-sql-memory 512MiB --background'
|
|
|
|
sh 'cockroach start-single-node --insecure --store=type=mem,size=2GiB --listen-addr=localhost:26258 --http-addr=localhost:8088 --cache 512MiB --max-sql-memory 512MiB --background'
|
|
|
|
sh 'cockroach start-single-node --insecure --store=type=mem,size=2GiB --listen-addr=localhost:26259 --http-addr=localhost:8089 --cache 512MiB --max-sql-memory 512MiB --background'
|
|
|
|
sh 'cockroach start-single-node --insecure --store=type=mem,size=2GiB --listen-addr=localhost:26260 --http-addr=localhost:8090 --cache 256MiB --max-sql-memory 256MiB --background'
|
|
|
|
}
|
2019-04-22 14:45:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Verification') {
|
|
|
|
parallel {
|
|
|
|
stage('Lint') {
|
|
|
|
steps {
|
2019-12-16 15:25:12 +00:00
|
|
|
sh 'check-copyright'
|
|
|
|
sh 'check-large-files'
|
|
|
|
sh 'check-imports -race ./...'
|
|
|
|
sh 'check-peer-constraints -race'
|
|
|
|
sh 'check-atomic-align ./...'
|
2020-09-08 15:20:27 +01:00
|
|
|
sh 'check-monkit ./...'
|
2019-12-16 15:25:12 +00:00
|
|
|
sh 'check-errs ./...'
|
2019-11-14 08:31:30 +00:00
|
|
|
sh 'staticcheck ./...'
|
2019-12-16 15:25:12 +00:00
|
|
|
sh 'golangci-lint --config /go/ci/.golangci.yml -j=2 run'
|
|
|
|
sh 'check-mod-tidy -mod .build/go.mod.orig'
|
2019-10-15 18:00:14 +01:00
|
|
|
sh 'make check-monitoring'
|
2021-01-20 18:57:47 +00:00
|
|
|
sh 'make test-wasm-size'
|
2021-03-29 12:45:27 +01:00
|
|
|
|
|
|
|
sh 'protolock status'
|
2019-04-22 14:45:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Tests') {
|
|
|
|
environment {
|
2020-07-10 14:28:01 +01:00
|
|
|
STORJ_TEST_COCKROACH = 'cockroach://root@localhost:26256/testcockroach?sslmode=disable;' +
|
2020-04-27 20:34:42 +01:00
|
|
|
'cockroach://root@localhost:26257/testcockroach?sslmode=disable;' +
|
|
|
|
'cockroach://root@localhost:26258/testcockroach?sslmode=disable;' +
|
|
|
|
'cockroach://root@localhost:26259/testcockroach?sslmode=disable'
|
2020-09-28 08:33:00 +01:00
|
|
|
STORJ_TEST_COCKROACH_ALT = 'cockroach://root@localhost:26260/testcockroach?sslmode=disable'
|
2020-07-10 14:28:01 +01:00
|
|
|
STORJ_TEST_POSTGRES = 'postgres://postgres@localhost/teststorj?sslmode=disable'
|
2020-11-05 13:30:39 +00:00
|
|
|
STORJ_TEST_DATABASES = 'crdb|pgx|cockroach://root@localhost:26259/testmetabase?sslmode=disable;pg|pgx|postgres://postgres@localhost/testmetabase?sslmode=disable'
|
2021-03-31 10:06:47 +01:00
|
|
|
COVERFLAGS = "${ env.BRANCH_NAME == 'main' ? '-coverprofile=.build/coverprofile -coverpkg=storj.io/storj/private/...,storj.io/storj/pkg/...,storj.io/storj/satellite/...,storj.io/storj/storage/...,storj.io/storj/storagenode/...,storj.io/storj/versioncontrol/...' : ''}"
|
2019-04-22 14:45:53 +01:00
|
|
|
}
|
|
|
|
steps {
|
2020-04-27 20:34:42 +01:00
|
|
|
sh 'cockroach sql --insecure --host=localhost:26256 -e \'create database testcockroach;\''
|
2019-12-10 16:32:54 +00:00
|
|
|
sh 'cockroach sql --insecure --host=localhost:26257 -e \'create database testcockroach;\''
|
2020-04-27 20:34:42 +01:00
|
|
|
sh 'cockroach sql --insecure --host=localhost:26258 -e \'create database testcockroach;\''
|
|
|
|
sh 'cockroach sql --insecure --host=localhost:26259 -e \'create database testcockroach;\''
|
2020-09-28 08:33:00 +01:00
|
|
|
sh 'cockroach sql --insecure --host=localhost:26260 -e \'create database testcockroach;\''
|
2020-04-27 20:34:42 +01:00
|
|
|
|
2020-10-28 15:28:06 +00:00
|
|
|
sh 'cockroach sql --insecure --host=localhost:26259 -e \'create database testmetabase;\''
|
|
|
|
|
2019-04-22 14:45:53 +01:00
|
|
|
sh 'psql -U postgres -c \'create database teststorj;\''
|
2020-10-28 15:28:06 +00:00
|
|
|
sh 'psql -U postgres -c \'create database testmetabase;\''
|
2019-12-16 15:25:12 +00:00
|
|
|
sh 'use-ports -from 1024 -to 10000 &'
|
2020-11-09 12:57:23 +00:00
|
|
|
|
2021-02-22 15:31:07 +00:00
|
|
|
sh 'go test -parallel 4 -p 6 -vet=off $COVERFLAGS -timeout 32m -json -race ./... 2>&1 | tee .build/tests.json | xunit -out .build/tests.xml'
|
2020-11-17 13:21:03 +00:00
|
|
|
|
2019-12-16 15:25:12 +00:00
|
|
|
sh 'check-clean-directory'
|
2019-04-22 14:45:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
post {
|
|
|
|
always {
|
2019-04-24 16:33:01 +01:00
|
|
|
sh script: 'cat .build/tests.json | tparse -all -top -slow 100', returnStatus: true
|
|
|
|
archiveArtifacts artifacts: '.build/tests.json'
|
|
|
|
junit '.build/tests.xml'
|
2019-04-26 14:39:11 +01:00
|
|
|
|
|
|
|
script {
|
|
|
|
if(fileExists(".build/coverprofile")){
|
2019-12-16 15:25:12 +00:00
|
|
|
sh script: 'filter-cover-profile < .build/coverprofile > .build/clean.coverprofile', returnStatus: true
|
2019-04-26 14:39:11 +01:00
|
|
|
sh script: 'gocov convert .build/clean.coverprofile > .build/cover.json', returnStatus: true
|
|
|
|
sh script: 'gocov-xml < .build/cover.json > .build/cobertura.xml', returnStatus: true
|
jenkins: Enable Cobertura failing for code coverage
Measure code coverage "by line" (Go actually measures by block, but whatever)
The '100, 0, 0' means anything above 100 auto-passes, anything below 0 auto-fails,
and anything below 0 is reported as unstable. autoupdateHealth, if I understand
correctly, will raise the functional auto-fail limit each time, so that a drop
in coverage will result in a failed test. Finally failUnhealty is the trigger
which actually causes the build to fail, rather than simply reporting an error.
I have tested these changes using replay, but I was unable to verify 100% that
they work as designed. The risks of having to revert this code seems less than
the cost of spending more time playing around with Jenkins locally..
Change-Id: Ica855b36aef7e1c3023fa80611229ca691017021
2020-05-13 15:39:18 +01:00
|
|
|
cobertura coberturaReportFile: '.build/cobertura.xml',
|
2021-02-22 11:53:21 +00:00
|
|
|
lineCoverageTargets: '70, 60, 50',
|
|
|
|
autoUpdateHealth: false,
|
|
|
|
autoUpdateStability: false,
|
jenkins: Enable Cobertura failing for code coverage
Measure code coverage "by line" (Go actually measures by block, but whatever)
The '100, 0, 0' means anything above 100 auto-passes, anything below 0 auto-fails,
and anything below 0 is reported as unstable. autoupdateHealth, if I understand
correctly, will raise the functional auto-fail limit each time, so that a drop
in coverage will result in a failed test. Finally failUnhealty is the trigger
which actually causes the build to fail, rather than simply reporting an error.
I have tested these changes using replay, but I was unable to verify 100% that
they work as designed. The risks of having to revert this code seems less than
the cost of spending more time playing around with Jenkins locally..
Change-Id: Ica855b36aef7e1c3023fa80611229ca691017021
2020-05-13 15:39:18 +01:00
|
|
|
failUnhealthy: true
|
2019-04-26 14:39:11 +01:00
|
|
|
}
|
|
|
|
}
|
2019-04-22 14:45:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-10 07:10:01 +01:00
|
|
|
stage('Check Benchmark') {
|
|
|
|
environment {
|
2020-07-10 14:28:01 +01:00
|
|
|
STORJ_TEST_COCKROACH = 'cockroach://root@localhost:26256/benchcockroach?sslmode=disable'
|
|
|
|
STORJ_TEST_POSTGRES = 'postgres://postgres@localhost/benchstorj?sslmode=disable'
|
2021-01-22 17:34:08 +00:00
|
|
|
STORJ_TEST_DATABASES = 'crdb|pgx|cockroach://root@localhost:26256/benchcockroach?sslmode=disable;pg|pgx|postgres://postgres@localhost/benchstorj?sslmode=disable'
|
2020-07-10 07:10:01 +01:00
|
|
|
}
|
|
|
|
steps {
|
|
|
|
sh 'cockroach sql --insecure --host=localhost:26256 -e \'create database benchcockroach;\''
|
|
|
|
sh 'psql -U postgres -c \'create database benchstorj;\''
|
|
|
|
sh 'go test -parallel 1 -p 1 -vet=off -timeout 20m -short -run XYZXYZXYZXYZ -bench . -benchtime 1x ./...'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-22 14:45:53 +01:00
|
|
|
stage('Integration') {
|
|
|
|
environment {
|
|
|
|
// use different hostname to avoid port conflicts
|
|
|
|
STORJ_NETWORK_HOST4 = '127.0.0.2'
|
|
|
|
STORJ_NETWORK_HOST6 = '127.0.0.2'
|
2019-05-14 16:13:18 +01:00
|
|
|
|
|
|
|
STORJ_SIM_POSTGRES = 'postgres://postgres@localhost/teststorj2?sslmode=disable'
|
2019-04-22 14:45:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
steps {
|
2019-05-14 16:13:18 +01:00
|
|
|
sh 'psql -U postgres -c \'create database teststorj2;\''
|
2019-04-22 14:45:53 +01:00
|
|
|
sh 'make test-sim'
|
2020-11-05 12:28:59 +00:00
|
|
|
|
2019-09-25 16:16:11 +01:00
|
|
|
// sh 'make test-certificates' // flaky
|
2019-04-22 14:45:53 +01:00
|
|
|
}
|
|
|
|
}
|
2019-08-14 16:34:12 +01:00
|
|
|
|
2019-12-10 19:18:02 +00:00
|
|
|
stage('Cockroach Integration') {
|
2019-08-14 16:34:12 +01:00
|
|
|
environment {
|
2019-12-10 19:18:02 +00:00
|
|
|
STORJ_NETWORK_HOST4 = '127.0.0.4'
|
|
|
|
STORJ_NETWORK_HOST6 = '127.0.0.4'
|
2019-08-18 15:51:33 +01:00
|
|
|
|
2019-12-10 19:18:02 +00:00
|
|
|
STORJ_SIM_POSTGRES = 'cockroach://root@localhost:26257/testcockroach4?sslmode=disable'
|
2019-08-14 16:34:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
steps {
|
2019-12-10 19:18:02 +00:00
|
|
|
sh 'cockroach sql --insecure --host=localhost:26257 -e \'create database testcockroach4;\''
|
|
|
|
sh 'make test-sim'
|
2020-04-27 20:34:42 +01:00
|
|
|
sh 'cockroach sql --insecure --host=localhost:26257 -e \'drop database testcockroach4;\''
|
2019-08-14 16:34:12 +01:00
|
|
|
}
|
|
|
|
}
|
2019-09-05 14:32:46 +01:00
|
|
|
|
2021-03-08 11:21:43 +00:00
|
|
|
stage('Integration Redis unavailability') {
|
|
|
|
environment {
|
|
|
|
// use different hostname to avoid port conflicts
|
|
|
|
STORJ_NETWORK_HOST4 = '127.0.0.6'
|
|
|
|
STORJ_NETWORK_HOST6 = '127.0.0.6'
|
|
|
|
STORJ_REDIS_PORT = '7379'
|
|
|
|
|
|
|
|
STORJ_SIM_POSTGRES = 'postgres://postgres@localhost/teststorj6?sslmode=disable'
|
|
|
|
}
|
|
|
|
|
|
|
|
steps {
|
|
|
|
sh 'psql -U postgres -c \'create database teststorj6;\''
|
|
|
|
sh 'make test-sim-redis-unavailability'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-10 19:18:02 +00:00
|
|
|
stage('Backwards Compatibility') {
|
2019-11-22 19:59:46 +00:00
|
|
|
environment {
|
2019-12-10 19:18:02 +00:00
|
|
|
STORJ_NETWORK_HOST4 = '127.0.0.3'
|
|
|
|
STORJ_NETWORK_HOST6 = '127.0.0.3'
|
|
|
|
|
|
|
|
STORJ_SIM_POSTGRES = 'postgres://postgres@localhost/teststorj3?sslmode=disable'
|
2021-01-07 15:03:16 +00:00
|
|
|
STORJ_MIGRATION_DB = 'postgres://postgres@localhost/teststorj3?sslmode=disable&options=--search_path=satellite/0/meta'
|
2019-11-22 19:59:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
steps {
|
2019-12-10 19:18:02 +00:00
|
|
|
sh 'psql -U postgres -c \'create database teststorj3;\''
|
|
|
|
sh 'make test-sim-backwards-compatible'
|
2019-11-22 19:59:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-21 15:42:49 +00:00
|
|
|
stage('Cockroach Backwards Compatibility') {
|
|
|
|
environment {
|
|
|
|
STORJ_NETWORK_HOST4 = '127.0.0.5'
|
|
|
|
STORJ_NETWORK_HOST6 = '127.0.0.5'
|
|
|
|
|
|
|
|
STORJ_SIM_POSTGRES = 'cockroach://root@localhost:26257/testcockroach5?sslmode=disable'
|
2021-01-07 15:03:16 +00:00
|
|
|
STORJ_MIGRATION_DB = 'postgres://root@localhost:26257/testcockroach5/satellite/0/meta?sslmode=disable'
|
2020-01-21 15:42:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
steps {
|
|
|
|
sh 'cockroach sql --insecure --host=localhost:26257 -e \'create database testcockroach5;\''
|
|
|
|
sh 'make test-sim-backwards-compatible'
|
2020-04-27 20:34:42 +01:00
|
|
|
sh 'cockroach sql --insecure --host=localhost:26257 -e \'drop database testcockroach5;\''
|
2020-01-21 15:42:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-03 14:40:07 +00:00
|
|
|
stage('satellite npm') {
|
2019-09-05 14:32:46 +01:00
|
|
|
steps {
|
|
|
|
dir("web/satellite") {
|
|
|
|
sh 'npm run build'
|
|
|
|
sh 'npm run lint'
|
2020-02-10 20:32:13 +00:00
|
|
|
sh script: 'npm audit', returnStatus: true
|
2020-02-03 14:40:07 +00:00
|
|
|
sh 'npm run test'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-08 19:26:37 +00:00
|
|
|
stage('wasm npm') {
|
|
|
|
steps {
|
|
|
|
dir(".build") {
|
|
|
|
sh 'cp -r ../satellite/console/wasm/tests/ .'
|
|
|
|
sh 'cd tests && cp "$(go env GOROOT)/misc/wasm/wasm_exec.js" .'
|
|
|
|
sh 'cd tests && npm install && npm run test'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-03 14:40:07 +00:00
|
|
|
stage('storagenode npm') {
|
|
|
|
steps {
|
|
|
|
dir("web/storagenode") {
|
|
|
|
sh 'npm run build'
|
|
|
|
sh 'npm run lint'
|
2020-02-10 20:32:13 +00:00
|
|
|
sh script: 'npm audit', returnStatus: true
|
2019-09-05 14:32:46 +01:00
|
|
|
sh 'npm run test'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-22 14:45:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
post {
|
|
|
|
always {
|
2019-04-24 16:33:01 +01:00
|
|
|
sh "chmod -R 777 ." // ensure Jenkins agent can delete the working directory
|
|
|
|
deleteDir()
|
2019-04-22 14:45:53 +01:00
|
|
|
}
|
|
|
|
}
|
2019-05-09 06:40:00 +01:00
|
|
|
}
|