Compare commits

...

2 Commits

Author SHA1 Message Date
dependabot[bot]
00e4f28e8f build: Bump thiserror from 1.0.44 to 1.0.47 in /fuzz
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.44 to 1.0.47.
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.44...1.0.47)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: indirect
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-08-24 00:01:37 +00:00
Rob Bradford
89661f6579 Revert "build: Temporarily disable bare metal Intel workers"
This reverts commit 96df501b7f.

Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
2023-08-23 17:16:50 +01:00
2 changed files with 144 additions and 144 deletions

280
Jenkinsfile vendored
View File

@ -295,146 +295,146 @@ pipeline {
} }
} }
} }
// stage('Worker build - Metrics') { stage('Worker build - Metrics') {
// agent { node { label 'jammy-metrics' } } agent { node { label 'jammy-metrics' } }
// when { when {
// branch 'main' branch 'main'
// beforeAgent true beforeAgent true
// expression { expression {
// return runWorkers return runWorkers
// } }
// } }
// environment { environment {
// METRICS_PUBLISH_KEY = credentials('52e0945f-ce7a-43d1-87af-67d1d87cc40f') METRICS_PUBLISH_KEY = credentials('52e0945f-ce7a-43d1-87af-67d1d87cc40f')
// } }
// stages { stages {
// stage('Checkout') { stage('Checkout') {
// steps { steps {
// checkout scm checkout scm
// } }
// } }
// stage('Run metrics tests') { stage('Run metrics tests') {
// options { options {
// timeout(time: 1, unit: 'HOURS') timeout(time: 1, unit: 'HOURS')
// } }
// steps { steps {
// sh 'scripts/dev_cli.sh tests --metrics -- -- --report-file /root/workloads/metrics.json' sh 'scripts/dev_cli.sh tests --metrics -- -- --report-file /root/workloads/metrics.json'
// } }
// } }
// stage('Upload metrics report') { stage('Upload metrics report') {
// steps { steps {
// sh 'curl -X PUT https://cloud-hypervisor-metrics.azurewebsites.net/api/publishmetrics -H "x-functions-key: $METRICS_PUBLISH_KEY" -T ~/workloads/metrics.json' sh 'curl -X PUT https://cloud-hypervisor-metrics.azurewebsites.net/api/publishmetrics -H "x-functions-key: $METRICS_PUBLISH_KEY" -T ~/workloads/metrics.json'
// } }
// } }
// } }
// } }
// stage('Worker build - Rate Limiter') { stage('Worker build - Rate Limiter') {
// agent { node { label 'focal-metrics' } } agent { node { label 'focal-metrics' } }
// when { when {
// branch 'main' branch 'main'
// beforeAgent true beforeAgent true
// expression { expression {
// return runWorkers return runWorkers
// } }
// } }
// stages { stages {
// stage('Checkout') { stage('Checkout') {
// steps { steps {
// checkout scm checkout scm
// } }
// } }
// stage('Run rate-limiter integration tests') { stage('Run rate-limiter integration tests') {
// options { options {
// timeout(time: 10, unit: 'MINUTES') timeout(time: 10, unit: 'MINUTES')
// } }
// steps { steps {
// sh 'scripts/dev_cli.sh tests --integration-rate-limiter' sh 'scripts/dev_cli.sh tests --integration-rate-limiter'
// } }
// } }
// } }
// } }
// stage('Worker build - SGX') { stage('Worker build - SGX') {
// agent { node { label 'jammy-sgx' } } agent { node { label 'jammy-sgx' } }
// when { when {
// beforeAgent true beforeAgent true
// allOf { allOf {
// branch 'main' branch 'main'
// expression { expression {
// return runWorkers return runWorkers
// } }
// } }
// } }
// stages { stages {
// stage('Checkout') { stage('Checkout') {
// steps { steps {
// checkout scm checkout scm
// } }
// } }
// stage('Run SGX integration tests') { stage('Run SGX integration tests') {
// options { options {
// timeout(time: 1, unit: 'HOURS') timeout(time: 1, unit: 'HOURS')
// } }
// steps { steps {
// sh 'scripts/dev_cli.sh tests --integration-sgx' sh 'scripts/dev_cli.sh tests --integration-sgx'
// } }
// } }
// stage('Run SGX integration tests for musl') { stage('Run SGX integration tests for musl') {
// options { options {
// timeout(time: 1, unit: 'HOURS') timeout(time: 1, unit: 'HOURS')
// } }
// steps { steps {
// sh 'scripts/dev_cli.sh tests --integration-sgx --libc musl' sh 'scripts/dev_cli.sh tests --integration-sgx --libc musl'
// } }
// } }
// } }
// post { post {
// always { always {
// sh "sudo chown -R jenkins.jenkins ${WORKSPACE}" sh "sudo chown -R jenkins.jenkins ${WORKSPACE}"
// deleteDir() deleteDir()
// } }
// } }
// } }
// stage('Worker build - VFIO') { stage('Worker build - VFIO') {
// agent { node { label 'jammy-vfio' } } agent { node { label 'jammy-vfio' } }
// when { when {
// beforeAgent true beforeAgent true
// allOf { allOf {
// branch 'main' branch 'main'
// expression { expression {
// return runWorkers return runWorkers
// } }
// } }
// } }
// stages { stages {
// stage('Checkout') { stage('Checkout') {
// steps { steps {
// checkout scm checkout scm
// } }
// } }
// stage('Run VFIO integration tests') { stage('Run VFIO integration tests') {
// options { options {
// timeout(time: 1, unit: 'HOURS') timeout(time: 1, unit: 'HOURS')
// } }
// steps { steps {
// sh 'scripts/dev_cli.sh tests --integration-vfio' sh 'scripts/dev_cli.sh tests --integration-vfio'
// } }
// } }
// stage('Run VFIO integration tests for musl') { stage('Run VFIO integration tests for musl') {
// options { options {
// timeout(time: 1, unit: 'HOURS') timeout(time: 1, unit: 'HOURS')
// } }
// steps { steps {
// sh 'scripts/dev_cli.sh tests --integration-vfio --libc musl' sh 'scripts/dev_cli.sh tests --integration-vfio --libc musl'
// } }
// } }
// } }
// post { post {
// always { always {
// sh "sudo chown -R jenkins.jenkins ${WORKSPACE}" sh "sudo chown -R jenkins.jenkins ${WORKSPACE}"
// deleteDir() deleteDir()
// } }
// } }
// } }
} }
} }
} }

8
fuzz/Cargo.lock generated
View File

@ -773,18 +773,18 @@ dependencies = [
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.44" version = "1.0.47"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90" checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "1.0.44" version = "1.0.47"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",