Skip to content
Failed

Console Output

Started by upstream project "gerrit-osmo-ttcn3-hacks" build number 3495
originally caused by:
 Triggered by Gerrit: https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41121 in silent mode.
Running as SYSTEM
Building remotely on build5-deb12build-ansible (obs ttcn3_with_linux_6.1_or_higher qemu registry-build-amd64 ttcn3 osmo-gsm-tester-build ttcn3-ggsn-test-kernel-git io_uring osmocom-gerrit coverity osmocom-master) in workspace /home/osmocom-build/jenkins/workspace/gerrit-lint
[ssh-agent] Looking for ssh-agent implementation...
$ ssh-agent
SSH_AUTH_SOCK=/tmp/ssh-8FF8NM3OXxh9/agent.1105073
SSH_AGENT_PID=1105075
[ssh-agent] Started.
Running ssh-add (command line suppressed)
Identity added: /home/osmocom-build/jenkins/workspace/gerrit-lint@tmp/private_key_16712353481589497003.key (/home/osmocom-build/jenkins/workspace/gerrit-lint@tmp/private_key_16712353481589497003.key)
[ssh-agent] Using credentials jenkins (gerrit.osmocom.org)
The recommended git tool is: NONE
using credential d5eda5e9-b59d-44ba-88d2-43473cb6e42d
Wiping out workspace first.
Cloning the remote Git repository
Cloning repository ssh://jenkins@gerrit.osmocom.org:29418/osmo-ttcn3-hacks
 > git init /home/osmocom-build/jenkins/workspace/gerrit-lint/code-from-gerrit # timeout=10
Fetching upstream changes from ssh://jenkins@gerrit.osmocom.org:29418/osmo-ttcn3-hacks
 > git --version # timeout=10
 > git --version # 'git version 2.39.5'
using GIT_SSH to set credentials gerrit.osmocom.org
Verifying host key using known hosts file, will automatically accept unseen keys
 > git fetch --tags --force --progress -- ssh://jenkins@gerrit.osmocom.org:29418/osmo-ttcn3-hacks +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git config remote.origin.url ssh://jenkins@gerrit.osmocom.org:29418/osmo-ttcn3-hacks # timeout=10
 > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git config remote.origin.url ssh://jenkins@gerrit.osmocom.org:29418/osmo-ttcn3-hacks # timeout=10
Fetching upstream changes from ssh://jenkins@gerrit.osmocom.org:29418/osmo-ttcn3-hacks
using GIT_SSH to set credentials gerrit.osmocom.org
Verifying host key using known hosts file, will automatically accept unseen keys
 > git fetch --tags --force --progress -- ssh://jenkins@gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/21/41121/1 # timeout=10
 > git rev-parse FETCH_HEAD^{commit} # timeout=10
Checking out Revision 4fb70b0018d1a4b92ced64cb0da32f9ee7cceee8 (master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 4fb70b0018d1a4b92ced64cb0da32f9ee7cceee8 # timeout=10
Commit message: "smdpp: es9p pure asn1 support"
 > git rev-parse FETCH_HEAD^{commit} # timeout=10
 > git rev-list --no-walk ba462027fcfc836b000066ea4a1fe44679d4b726 # timeout=10
[gerrit-lint] $ /bin/sh -xe /tmp/jenkins4897291031258887743.sh + rm -rf osmo-ci + git clone --depth=1 --branch=master https://gerrit.osmocom.org/osmo-ci osmo-ci Cloning into 'osmo-ci'... + git -C osmo-ci log --oneline 60bf602 OBS: disable_manuals: adjust for osmocom-bb + readlink -f /tmp/ssh-8FF8NM3OXxh9/agent.1105073 + docker run --rm -e GERRIT_HOST=gerrit.osmocom.org -e GERRIT_PORT=29418 -e GERRIT_PROJECT=osmo-ttcn3-hacks -e GERRIT_CHANGE_NUMBER=41121 -e GERRIT_PATCHSET_NUMBER=1 -e JENKINS_HOME=1 -e SSH_AUTH_SOCK=/ssh-agent -u build -v /tmp/ssh-8FF8NM3OXxh9/agent.1105073:/ssh-agent -v ./code-from-gerrit:/build/code-from-gerrit -v ./osmo-ci:/build/osmo-ci -w /build/code-from-gerrit osmocom-build/debian-bookworm-build /build/osmo-ci/lint/lint_diff.sh HEAD~1 Running 'ruff check'... F401 [*] `binascii` imported but unused --> smdpp/generate_all_test_certificates.py:20:8 | 19 | import os 20 | import binascii | ^^^^^^^^ 21 | from datetime import datetime, timedelta 22 | from cryptography import x509 | help: Remove unused import: `binascii` F401 [*] `datetime.timedelta` imported but unused --> smdpp/generate_all_test_certificates.py:21:32 | 19 | import os 20 | import binascii 21 | from datetime import datetime, timedelta | ^^^^^^^^^ 22 | from cryptography import x509 23 | from cryptography.x509.oid import NameOID, ExtensionOID | help: Remove unused import: `datetime.timedelta` F401 [*] `cryptography.x509.oid.ExtensionOID` imported but unused --> smdpp/generate_all_test_certificates.py:23:44 | 21 | from datetime import datetime, timedelta 22 | from cryptography import x509 23 | from cryptography.x509.oid import NameOID, ExtensionOID | ^^^^^^^^^^^^ 24 | from cryptography.hazmat.primitives import hashes, serialization 25 | from cryptography.hazmat.primitives.asymmetric import ec | help: Remove unused import: `cryptography.x509.oid.ExtensionOID` F541 [*] f-string without any placeholders --> smdpp/generate_all_test_certificates.py:449:11 | 447 | f.write(certificate.public_bytes(serialization.Encoding.DER)) 448 | 449 | print(f" EUM permits prefix: 89049032") | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 450 | print(f" Test EID uses: 89049033 (outside permitted range)") 451 | print(f" Full test EID: 89049033123451234512345678901234") | help: Remove extraneous `f` prefix F541 [*] f-string without any placeholders --> smdpp/generate_all_test_certificates.py:450:11 | 449 | print(f" EUM permits prefix: 89049032") 450 | print(f" Test EID uses: 89049033 (outside permitted range)") | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 451 | print(f" Full test EID: 89049033123451234512345678901234") 452 | print(f" Saved to: {output_path}") | help: Remove extraneous `f` prefix F541 [*] f-string without any placeholders --> smdpp/generate_all_test_certificates.py:451:11 | 449 | print(f" EUM permits prefix: 89049032") 450 | print(f" Test EID uses: 89049033 (outside permitted range)") 451 | print(f" Full test EID: 89049033123451234512345678901234") | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 452 | print(f" Saved to: {output_path}") 453 | print(f" Note: Uses same private key as SK_EUICC_ECDSA_NIST.pem") | help: Remove extraneous `f` prefix F541 [*] f-string without any placeholders --> smdpp/generate_all_test_certificates.py:453:11 | 451 | print(f" Full test EID: 89049033123451234512345678901234") 452 | print(f" Saved to: {output_path}") 453 | print(f" Note: Uses same private key as SK_EUICC_ECDSA_NIST.pem") | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 454 | 455 | # Also save as PEM for inspection | help: Remove extraneous `f` prefix F541 [*] f-string without any placeholders --> smdpp/generate_all_test_certificates.py:532:11 | 530 | f.write(certificate.public_bytes(serialization.Encoding.DER)) 531 | 532 | print(f" EUM permits prefix: 89049032") | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 533 | print(f" Test EID: 89049032123451234512345678901299") 534 | print(f" This EID is within permitted range but NOT in default_profiles") | help: Remove extraneous `f` prefix F541 [*] f-string without any placeholders --> smdpp/generate_all_test_certificates.py:533:11 | 532 | print(f" EUM permits prefix: 89049032") 533 | print(f" Test EID: 89049032123451234512345678901299") | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 534 | print(f" This EID is within permitted range but NOT in default_profiles") 535 | print(f" Saved to: {output_path}") | help: Remove extraneous `f` prefix F541 [*] f-string without any placeholders --> smdpp/generate_all_test_certificates.py:534:11 | 532 | print(f" EUM permits prefix: 89049032") 533 | print(f" Test EID: 89049032123451234512345678901299") 534 | print(f" This EID is within permitted range but NOT in default_profiles") | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 535 | print(f" Saved to: {output_path}") 536 | print(f" Note: Uses same private key as SK_EUICC_ECDSA_NIST.pem") | help: Remove extraneous `f` prefix F541 [*] f-string without any placeholders --> smdpp/generate_all_test_certificates.py:536:11 | 534 | print(f" This EID is within permitted range but NOT in default_profiles") 535 | print(f" Saved to: {output_path}") 536 | print(f" Note: Uses same private key as SK_EUICC_ECDSA_NIST.pem") | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 537 | 538 | # Also save as PEM for inspection | help: Remove extraneous `f` prefix Found 11 errors. [*] 11 fixable with the `--fix` option. Build step 'Execute shell' marked build as failure $ ssh-agent -k unset SSH_AUTH_SOCK; unset SSH_AGENT_PID; echo Agent pid 1105075 killed; [ssh-agent] Stopped. Finished: FAILURE