Implement JetStream Simplification (ADR-37) #592
Draft
Travis CI / Travis CI - Branch
failed
Sep 18, 2024 in 3m 17s
Build Failed
The build failed, just like the previous build.
Details
This is a normal build for the jetstream branch. You should be able to reproduce it by checking out the branch locally.
Jobs and Stages
This build has eight jobs, running in parallel.
Job | Python | ENV | State | Notes |
---|---|---|---|---|
2063.1 | 3.8 | failed | ||
2063.2 | 3.9 | failed | ||
2063.3 | 3.10 | failed | ||
2063.4 Python: 3.12 | 3.12-dev | failed | This job is allowed to fail. | |
2063.5 Python: 3.11 | 3.11 | failed | This job is allowed to fail. | |
2063.6 Python: 3.11/uvloop | 3.11 | failed | This job is allowed to fail. | |
2063.7 Python: 3.11 (nats-server@main) | 3.11 | NATS_SERVER_VERSION=main | failed | This job is allowed to fail. |
2063.8 Python: 3.7 | 3.7 | failed | This job is allowed to fail. |
Build Configuration
Build Option | Setting |
---|---|
Language | Python |
Operating System | Linux (Jammy) |
Python Versions | 3.8, 3.9, 3.10 |
Build Configuration
{
"language": "python",
"cache": {
"directories": [
"$HOME/nats-server"
]
},
"python": [
"3.8",
"3.9",
"3.10"
],
"before_install": [
"bash ./scripts/install_nats.sh"
],
"before_script": [
"export PATH=$HOME/nats-server:$PATH"
],
"install": [
"pip install -e .[nkeys,aiohttp,fast-mail-parser]"
],
"script": [
"make ci"
],
"notifications": {
"email": false
},
"sudo": true,
"dist": "jammy",
"jobs": {
"include": [
{
"name": "Python: 3.12",
"python": "3.12-dev",
"before_install": [
"sudo apt update && sudo apt install gcc build-essential -y",
"sudo apt-get install python3-pip",
"sudo apt-get install python3-pytest",
"pip install --upgrade pip",
"bash ./scripts/install_nats.sh"
],
"install": [
"pip install -e .[fast-mail-parser]"
]
},
{
"name": "Python: 3.11",
"python": "3.11",
"before_install": [
"sudo apt update && sudo apt install gcc build-essential -y",
"sudo apt-get install python3-pip",
"sudo apt-get install python3-pytest",
"pip install --upgrade pip",
"bash ./scripts/install_nats.sh"
],
"install": [
"pip install -e .[fast-mail-parser]"
]
},
{
"name": "Python: 3.11/uvloop",
"python": "3.11",
"before_install": [
"sudo apt update && sudo apt install gcc build-essential -y",
"sudo apt-get install python3-pip",
"sudo apt-get install python3-pytest",
"pip install --upgrade pip",
"bash ./scripts/install_nats.sh"
],
"install": [
"pip install -e .[fast-mail-parser]",
"pip install uvloop"
]
},
{
"name": "Python: 3.11 (nats-server@main)",
"python": "3.11",
"env": [
"NATS_SERVER_VERSION=main"
],
"before_install": [
"sudo apt update && sudo apt install gcc build-essential -y",
"sudo apt-get install python3-pip",
"sudo apt-get install python3-pytest",
"pip install --upgrade pip",
"bash ./scripts/install_nats.sh"
],
"install": [
"pip install -e .[fast-mail-parser]"
]
},
{
"name": "Python: 3.7",
"python": "3.7",
"before_install": [
"sudo apt update && sudo apt install gcc build-essential -y",
"sudo apt-get install python3-pip",
"sudo apt-get install python3-pytest",
"pip install --upgrade pip",
"bash ./scripts/install_nats.sh"
],
"install": [
"pip install -e .[aiohttp,fast-mail-parser]"
],
"script": [
"pytest -vv -s --continue-on-collection-errors tests"
]
}
],
"allow_failures": [
{
"name": "Python: 3.7"
},
{
"name": "Python: 3.8"
},
{
"name": "Python: 3.11"
},
{
"name": "Python: 3.11/uvloop"
},
{
"name": "Python: 3.11 (nats-server@main)"
},
{
"name": "Python: 3.12"
}
]
},
"os": "linux",
"group": "stable"
}
Loading