* [PATCH 0/2] Fix .gitlab-ci build
@ 2022-07-06 11:46 Quirin Gylstorff
2022-07-06 11:46 ` [PATCH 1/2] gitlab-ci: update kas-isar image Quirin Gylstorff
` (3 more replies)
0 siblings, 4 replies; 10+ messages in thread
From: Quirin Gylstorff @ 2022-07-06 11:46 UTC (permalink / raw)
To: isar-users
From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
Update kas-isar to 3.0.2 for sbuild support
Pin avocado-framework version to avoid error `Suite creation for runner "runner" is not supported`
Quirin Gylstorff (2):
gitlab-ci: update kas-isar image
scripts/ci_build.sh: Set avocado-framework version to 96.0
.gitlab-ci.yml | 2 +-
scripts/ci_build.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--
2.35.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/2] gitlab-ci: update kas-isar image
2022-07-06 11:46 [PATCH 0/2] Fix .gitlab-ci build Quirin Gylstorff
@ 2022-07-06 11:46 ` Quirin Gylstorff
2022-07-06 11:46 ` [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0 Quirin Gylstorff
` (2 subsequent siblings)
3 siblings, 0 replies; 10+ messages in thread
From: Quirin Gylstorff @ 2022-07-06 11:46 UTC (permalink / raw)
To: isar-users
From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
Update kas-isar to 3.0.2 for sbuild support
Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
---
.gitlab-ci.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d0488a0c..e2048917 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,4 @@
-image: ghcr.io/siemens/kas/kas-isar:2.6.3
+image: ghcr.io/siemens/kas/kas-isar:3.0.2
variables:
GIT_STRATEGY: clone
--
2.35.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0
2022-07-06 11:46 [PATCH 0/2] Fix .gitlab-ci build Quirin Gylstorff
2022-07-06 11:46 ` [PATCH 1/2] gitlab-ci: update kas-isar image Quirin Gylstorff
@ 2022-07-06 11:46 ` Quirin Gylstorff
2022-07-06 12:54 ` Gylstorff Quirin
2022-07-06 14:01 ` Henning Schild
2022-07-08 7:47 ` [PATCH 0/2] Fix .gitlab-ci build Anton Mikanovich
2022-07-08 16:31 ` Anton Mikanovich
3 siblings, 2 replies; 10+ messages in thread
From: Quirin Gylstorff @ 2022-07-06 11:46 UTC (permalink / raw)
To: isar-users
From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
With avocado-framework version 97.0 the following error occurs:
```
Successfully installed avocado-framework-97.0
+ avocado --show=app,test run /builds/debian/isar/testsuite/citest.py -t fast,-repro,-startvm --test-runner=runner --disable-sysinfo -p quiet=1 -p cross=1 -p time_to_wait=300
Suite creation for runner "runner" is not supported
```
Force for now version 96.0.
Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
---
scripts/ci_build.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
index 2513f1a0..b1ec6912 100755
--- a/scripts/ci_build.sh
+++ b/scripts/ci_build.sh
@@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then
rm -rf /tmp/avocado_venv
virtualenv --python python3 /tmp/avocado_venv
source /tmp/avocado_venv/bin/activate
- pip install avocado-framework
+ pip install avocado-framework==96.0
fi
# Get Avocado build tests path
--
2.35.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0
2022-07-06 11:46 ` [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0 Quirin Gylstorff
@ 2022-07-06 12:54 ` Gylstorff Quirin
2022-07-06 14:51 ` Gylstorff Quirin
2022-07-06 14:01 ` Henning Schild
1 sibling, 1 reply; 10+ messages in thread
From: Gylstorff Quirin @ 2022-07-06 12:54 UTC (permalink / raw)
To: isar-users
On 7/6/22 13:46, Quirin Gylstorff wrote:
> From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
>
> With avocado-framework version 97.0 the following error occurs:
> ```
> Successfully installed avocado-framework-97.0
> + avocado --show=app,test run /builds/debian/isar/testsuite/citest.py -t fast,-repro,-startvm --test-runner=runner --disable-sysinfo -p quiet=1 -p cross=1 -p time_to_wait=300
> Suite creation for runner "runner" is not supported
> ```
>
Reason: the legacy test runner was removed with
https://github.com/avocado-framework/avocado/commit/c961522567539bdb3859524f1087e4c5c69c600a.
Quirin
> Force for now version 96.0.
>
> Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
> ---
> scripts/ci_build.sh | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
> index 2513f1a0..b1ec6912 100755
> --- a/scripts/ci_build.sh
> +++ b/scripts/ci_build.sh
> @@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then
> rm -rf /tmp/avocado_venv
> virtualenv --python python3 /tmp/avocado_venv
> source /tmp/avocado_venv/bin/activate
> - pip install avocado-framework
> + pip install avocado-framework==96.0
> fi
>
> # Get Avocado build tests path
-
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0
2022-07-06 11:46 ` [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0 Quirin Gylstorff
2022-07-06 12:54 ` Gylstorff Quirin
@ 2022-07-06 14:01 ` Henning Schild
2022-07-06 16:27 ` Baurzhan Ismagulov
1 sibling, 1 reply; 10+ messages in thread
From: Henning Schild @ 2022-07-06 14:01 UTC (permalink / raw)
To: Quirin Gylstorff; +Cc: isar-users
Am Wed, 6 Jul 2022 13:46:55 +0200
schrieb Quirin Gylstorff <Quirin.Gylstorff@siemens.com>:
> From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
>
> With avocado-framework version 97.0 the following error occurs:
> ```
> Successfully installed avocado-framework-97.0
> + avocado --show=app,test run /builds/debian/isar/testsuite/citest.py
> -t fast,-repro,-startvm --test-runner=runner --disable-sysinfo -p
> quiet=1 -p cross=1 -p time_to_wait=300 Suite creation for runner
> "runner" is not supported ```
>
> Force for now version 96.0.
>
> Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
> ---
> scripts/ci_build.sh | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
> index 2513f1a0..b1ec6912 100755
> --- a/scripts/ci_build.sh
> +++ b/scripts/ci_build.sh
> @@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then
> rm -rf /tmp/avocado_venv
> virtualenv --python python3 /tmp/avocado_venv
> source /tmp/avocado_venv/bin/activate
> - pip install avocado-framework
> + pip install avocado-framework==96.0
Once the code is reworked so it does not use the legacy feature any
longer this pinning should probably not be dropped, it can be moved
every once in a while, but getting a random version is simply not good.
As we see again here.
Especially not when ilbers does not run this bit in their CI, having
avocado already installed in some version. Maybe we should always use
that venv/pip version no matter if the host is contaminated already
with some other random version.
How is the mainline issue for debian going anyhow?
Time to grab some tequila to wash down the guacamole and sing some "i
told you so" songs. pip pip hurray!
When it comes to testing the maintainer should really make it as simple
as possible for people to run the tests, ideally with the very same
outcome as the pipelines of the maintainer. Also it should be easy for
users to contribute to the test suite, so it will be reasonable to ask
people to bring tests with their features.
IMHO the whole avocado story made both aspects worse than before. Only
for some features that the maintainer wanted, but what they get is
ontested patches because they are the only ones able to run that beast.
Henning
> fi
>
> # Get Avocado build tests path
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0
2022-07-06 12:54 ` Gylstorff Quirin
@ 2022-07-06 14:51 ` Gylstorff Quirin
0 siblings, 0 replies; 10+ messages in thread
From: Gylstorff Quirin @ 2022-07-06 14:51 UTC (permalink / raw)
To: isar-users
[-- Attachment #1: Type: text/plain, Size: 2124 bytes --]
On 7/6/22 14:54, Gylstorff Quirin wrote:
>
>
> On 7/6/22 13:46, Quirin Gylstorff wrote:
>> From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
>>
>> With avocado-framework version 97.0 the following error occurs:
>> ```
>> Successfully installed avocado-framework-97.0
>> + avocado --show=app,test run /builds/debian/isar/testsuite/citest.py
>> -t fast,-repro,-startvm --test-runner=runner --disable-sysinfo -p
>> quiet=1 -p cross=1 -p time_to_wait=300
>> Suite creation for runner "runner" is not supported
>> ```
>>
> Reason: the legacy test runner was removed with
> https://github.com/avocado-framework/avocado/commit/c961522567539bdb3859524f1087e4c5c69c600a.
>
> Quirin
Also the new runner breaks the CI build.
Attached is the build log.
This is on next with the following changes:
```
modified scripts/ci_build.sh
@@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then
rm -rf /tmp/avocado_venv
virtualenv --python python3 /tmp/avocado_venv
source /tmp/avocado_venv/bin/activate
- pip install avocado-framework
+ pip install avocado-framework==97.0
fi
# Get Avocado build tests path
@@ -143,5 +143,5 @@ export VIRTUAL_ENV="./"
set -x
avocado $VERBOSE run "$TESTSUITE_DIR/citest.py" \
- -t $TAGS --test-runner=runner --disable-sysinfo \
+ -t $TAGS --disable-sysinfo \
-p quiet=$QUIET -p cross=$CROSS_BUILD -p time_to_wait=$TIMEOUT
```
Quirin
>> Force for now version 96.0.
>>
>> Signed-off-by: Quirin Gylstorff <quirin.gylstorff@siemens.com>
>> ---
>> scripts/ci_build.sh | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
>> index 2513f1a0..b1ec6912 100755
>> --- a/scripts/ci_build.sh
>> +++ b/scripts/ci_build.sh
>> @@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then
>> rm -rf /tmp/avocado_venv
>> virtualenv --python python3 /tmp/avocado_venv
>> source /tmp/avocado_venv/bin/activate
>> - pip install avocado-framework
>> + pip install avocado-framework==96.0
>> fi
>> # Get Avocado build tests path
>
> -
>
[-- Attachment #2: job.log --]
[-- Type: text/x-log, Size: 38863 bytes --]
2022-07-06 12:57:36,307 avocado.test INFO | Command line: /tmp/avocado_venv/bin/avocado --show=app,test run /builds/debian/isar/testsuite/citest.py -t fast,-repro,-startvm --disable-sysinfo -p quiet=1 -p cross=1 -p time_to_wait=300
2022-07-06 12:57:36,308 avocado.test INFO |
2022-07-06 12:57:36,308 avocado.test INFO | Avocado version: 97.0
2022-07-06 12:57:36,308 avocado.test INFO |
2022-07-06 12:57:36,308 avocado.test INFO | Avocado config:
2022-07-06 12:57:36,308 avocado.test INFO |
2022-07-06 12:57:36,309 avocado.test INFO | {'assets.fetch.ignore_errors': False,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.fetch.references': [],
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.fetch.timeout': 300,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.list.days': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.list.overall_limit': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.list.size_filter': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.purge.days': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.purge.overall_limit': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.purge.size_filter': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.register.name': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.register.sha1_hash': None,
2022-07-06 12:57:36,309 avocado.test INFO | 'assets.register.url': None,
2022-07-06 12:57:36,310 avocado.test INFO | 'config': None,
2022-07-06 12:57:36,310 avocado.test INFO | 'config.datadir': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'core.input_encoding': 'utf-8',
2022-07-06 12:57:36,310 avocado.test INFO | 'core.paginator': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'core.show': {'app', 'test'},
2022-07-06 12:57:36,310 avocado.test INFO | 'core.verbose': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'datadir.paths.base_dir': '/builds/debian/isar/build/',
2022-07-06 12:57:36,310 avocado.test INFO | 'datadir.paths.cache_dirs': ['/root/avocado/data/cache'],
2022-07-06 12:57:36,310 avocado.test INFO | 'datadir.paths.data_dir': '/builds/debian/isar/build/data',
2022-07-06 12:57:36,310 avocado.test INFO | 'datadir.paths.logs_dir': '/builds/debian/isar/build/job-results',
2022-07-06 12:57:36,310 avocado.test INFO | 'datadir.paths.test_dir': '/builds/debian/isar/build/tests',
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.create_reports': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.filter': ['cmdline', 'time', 'variants', 'results', 'config', 'sysinfo'],
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.html': None,
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.jobids': [],
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.open_browser': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'diff.strip_id': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_arch': '',
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_create': False,
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_name': '',
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_path': '',
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_release': '',
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_type': '',
2022-07-06 12:57:36,310 avocado.test INFO | 'distro.distro_def_version': '',
2022-07-06 12:57:36,311 avocado.test INFO | 'filter.by_tags.include_empty': False,
2022-07-06 12:57:36,311 avocado.test INFO | 'filter.by_tags.include_empty_key': False,
2022-07-06 12:57:36,311 avocado.test INFO | 'filter.by_tags.tags': ['fast,-repro,-startvm'],
2022-07-06 12:57:36,311 avocado.test INFO | 'human_ui.omit.statuses': [],
2022-07-06 12:57:36,311 avocado.test INFO | 'job.output.loglevel': 'DEBUG',
2022-07-06 12:57:36,311 avocado.test INFO | 'job.output.testlogs.logfiles': ['debug.log'],
2022-07-06 12:57:36,311 avocado.test INFO | 'job.output.testlogs.statuses': [],
2022-07-06 12:57:36,311 avocado.test INFO | 'job.output.testlogs.summary_statuses': ['FAIL', 'ERROR'],
2022-07-06 12:57:36,311 avocado.test INFO | 'job.replay.source_job_id': 'latest',
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.json.enabled': True,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.json.output': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.tap.enabled': True,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.tap.include_logs': False,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.tap.output': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.xunit.enabled': True,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.xunit.job_name': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.xunit.max_test_log_chars': 100000,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.result.xunit.output': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.store_logging_stream': ['avocado.core:DEBUG'],
2022-07-06 12:57:36,311 avocado.test INFO | 'job.run.timeout': 0,
2022-07-06 12:57:36,311 avocado.test INFO | 'jobs.get.output_files.destination': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'jobs.get.output_files.job_id': None,
2022-07-06 12:57:36,311 avocado.test INFO | 'jobs.show.job_id': 'latest',
2022-07-06 12:57:36,311 avocado.test INFO | 'json.variants.load': None,
2022-07-06 12:57:36,312 avocado.test INFO | 'list.recipes.write_to_directory': None,
2022-07-06 12:57:36,312 avocado.test INFO | 'list.write_to_json_file': None,
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.max_parallel_tasks': 64,
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.shuffle': False,
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.spawner': 'process',
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.status_server_auto': True,
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.status_server_buffer_size': 33554432,
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.status_server_listen': '127.0.0.1:8888',
2022-07-06 12:57:36,312 avocado.test INFO | 'nrunner.status_server_uri': '127.0.0.1:8888',
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.cli.cmd.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.cli.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.disable': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.init.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.job.prepost.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.jobscripts.post': '/etc/avocado/scripts/job/post.d/',
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.jobscripts.pre': '/etc/avocado/scripts/job/pre.d/',
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.jobscripts.warn_non_existing_dir': False,
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.jobscripts.warn_non_zero_status': True,
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.ordered_list': False,
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.resolver.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.result.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.result_events.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.runnable.runner.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.runner.order': [],
2022-07-06 12:57:36,312 avocado.test INFO | 'plugins.skip_broken_plugin_notification': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'plugins.spawner.order': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'plugins.varianter.order': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'resolver.references': ['/builds/debian/isar/testsuite/citest.py'],
2022-07-06 12:57:36,313 avocado.test INFO | 'run.dict_variants': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'run.dict_variants.variant_id_keys': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'run.dry_run.enabled': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.dry_run.no_cleanup': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.execution_order': 'variants-per-test',
2022-07-06 12:57:36,313 avocado.test INFO | 'run.failfast': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.ignore_missing_references': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.job_category': None,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.journal.enabled': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.keep_tmp': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.log_test_data_directories': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.results.archive': False,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.results_dir': None,
2022-07-06 12:57:36,313 avocado.test INFO | 'run.test_parameters': [['quiet', '1'],
2022-07-06 12:57:36,313 avocado.test INFO | ['cross', '1'],
2022-07-06 12:57:36,313 avocado.test INFO | ['time_to_wait', '300']],
2022-07-06 12:57:36,313 avocado.test INFO | 'run.test_runner': 'nrunner',
2022-07-06 12:57:36,313 avocado.test INFO | 'run.unique_job_id': None,
2022-07-06 12:57:36,313 avocado.test INFO | 'runner.exectest.exitcodes.skip': [],
2022-07-06 12:57:36,313 avocado.test INFO | 'runner.identifier_format': '{uri}',
2022-07-06 12:57:36,313 avocado.test INFO | 'runner.output.color': 'auto',
2022-07-06 12:57:36,313 avocado.test INFO | 'runner.output.colored': True,
2022-07-06 12:57:36,314 avocado.test INFO | 'runner.output.utf8': True,
2022-07-06 12:57:36,314 avocado.test INFO | 'runner.timeout.after_interrupted': 60,
2022-07-06 12:57:36,314 avocado.test INFO | 'runner.timeout.process_alive': 60,
2022-07-06 12:57:36,314 avocado.test INFO | 'runner.timeout.process_died': 10,
2022-07-06 12:57:36,314 avocado.test INFO | 'simpletests.status.failure_fields': ['status', 'stdout', 'stderr'],
2022-07-06 12:57:36,314 avocado.test INFO | 'simpletests.status.skip_location': 'all',
2022-07-06 12:57:36,314 avocado.test INFO | 'simpletests.status.skip_regex': '^SKIP$',
2022-07-06 12:57:36,314 avocado.test INFO | 'simpletests.status.warn_location': 'all',
2022-07-06 12:57:36,314 avocado.test INFO | 'simpletests.status.warn_regex': '^WARN$',
2022-07-06 12:57:36,314 avocado.test INFO | 'spawner.podman.avocado_spawner_egg': None,
2022-07-06 12:57:36,314 avocado.test INFO | 'spawner.podman.bin': '/usr/bin/podman',
2022-07-06 12:57:36,314 avocado.test INFO | 'spawner.podman.image': 'debian:11',
2022-07-06 12:57:36,314 avocado.test INFO | 'subcommand': 'run',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.commands_timeout': -1,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.enabled': False,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.installed_packages': False,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.locale': 'C',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.optimize': False,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.profiler': False,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collect.sysinfodir': None,
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collectibles.commands': '/tmp/avocado_venv/lib/python3.9/site-packages/avocado/etc/avocado/sysinfo/commands',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collectibles.fail_commands': '/tmp/avocado_venv/lib/python3.9/site-packages/avocado/etc/avocado/sysinfo/fail_commands',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collectibles.fail_files': '/tmp/avocado_venv/lib/python3.9/site-packages/avocado/etc/avocado/sysinfo/fail_files',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collectibles.files': '/tmp/avocado_venv/lib/python3.9/site-packages/avocado/etc/avocado/sysinfo/files',
2022-07-06 12:57:36,314 avocado.test INFO | 'sysinfo.collectibles.profilers': '/tmp/avocado_venv/lib/python3.9/site-packages/avocado/etc/avocado/sysinfo/profilers',
2022-07-06 12:57:36,315 avocado.test INFO | 'task.timeout.running': None,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.contents': False,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.debug': False,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.inherit': False,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.json_variants_dump': None,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.summary': 0,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.tree': False,
2022-07-06 12:57:36,315 avocado.test INFO | 'variants.variants': 1,
2022-07-06 12:57:36,315 avocado.test INFO | 'vmimage.get.arch': None,
2022-07-06 12:57:36,315 avocado.test INFO | 'vmimage.get.distro': None,
2022-07-06 12:57:36,315 avocado.test INFO | 'vmimage.get.version': None}
2022-07-06 12:57:36,315 avocado.test INFO |
2022-07-06 12:57:36,315 avocado.test INFO | Avocado Data Directories:
2022-07-06 12:57:36,315 avocado.test INFO |
2022-07-06 12:57:36,315 avocado.test INFO | base /builds/debian/isar/build/
2022-07-06 12:57:36,315 avocado.test INFO | tests ./tests
2022-07-06 12:57:36,315 avocado.test INFO | data /builds/debian/isar/build/data
2022-07-06 12:57:36,315 avocado.test INFO | logs /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77
2022-07-06 12:57:36,316 avocado.test INFO |
2022-07-06 12:57:36,316 avocado.test INFO | Temporary dir: /var/tmp/avocado_tmp_gq9z5_jf/avocado_job_q820iqch
2022-07-06 12:57:36,316 avocado.test INFO |
2022-07-06 12:57:36,316 avocado.test INFO | Job ID: f9d6d77a935a0f597cc7a9856182c25d3486e3a9
2022-07-06 12:57:36,316 avocado.test INFO |
2022-07-06 12:57:36,551 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,551 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,551 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,551 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,551 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,552 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,552 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,552 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,552 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,552 avocado.core.task.statemachine DEBUG| <Worker spawner="<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>" max_triaging=64 max_running=10 task_timeout=None> has been initialized
2022-07-06 12:57:36,553 avocado.core.task.statemachine DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild": requested -> triaging
2022-07-06 12:57:36,553 avocado.core.task.statemachine DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,553 avocado.core.task.statemachine DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,559 avocado.core.task.statemachine DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross": requested -> triaging
2022-07-06 12:57:36,559 avocado.core.task.statemachine DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,559 avocado.core.task.statemachine DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,564 avocado.core.task.statemachine DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi": requested -> triaging
2022-07-06 12:57:36,564 avocado.core.task.statemachine DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,564 avocado.core.task.statemachine DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,568 avocado.core.task.statemachine DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu": requested -> triaging
2022-07-06 12:57:36,568 avocado.core.task.statemachine DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,568 avocado.core.task.statemachine DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,572 avocado.core.task.statemachine DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm": requested -> triaging
2022-07-06 12:57:36,572 avocado.core.task.statemachine DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,572 avocado.core.task.statemachine DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,576 avocado.core.task.statemachine DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk": requested -> triaging
2022-07-06 12:57:36,576 avocado.core.task.statemachine DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,576 avocado.core.task.statemachine DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,580 avocado.core.task.statemachine DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild": requested -> triaging
2022-07-06 12:57:36,580 avocado.core.task.statemachine DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,580 avocado.core.task.statemachine DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,585 avocado.core.task.statemachine DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross": requested -> triaging
2022-07-06 12:57:36,586 avocado.core.task.statemachine DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,586 avocado.core.task.statemachine DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,592 avocado.core.task.statemachine DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk": requested -> triaging
2022-07-06 12:57:36,592 avocado.core.task.statemachine DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,593 avocado.core.task.statemachine DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,598 avocado.core.task.statemachine DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate": requested -> triaging
2022-07-06 12:57:36,599 avocado.core.task.statemachine DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate": requirements OK (will proceed to check dependencies)
2022-07-06 12:57:36,599 avocado.core.task.statemachine DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate": about to be spawned with "<avocado.plugins.spawners.process.ProcessSpawner object at 0x7f20911fd8b0>"
2022-07-06 12:57:36,606 avocado.core.task.statemachine DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild": spawned successfully
2022-07-06 12:57:36,606 avocado.core.task.statemachine DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross": spawned successfully
2022-07-06 12:57:36,607 avocado.core.task.statemachine DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi": spawned successfully
2022-07-06 12:57:36,607 avocado.core.task.statemachine DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu": spawned successfully
2022-07-06 12:57:36,607 avocado.core.task.statemachine DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm": spawned successfully
2022-07-06 12:57:36,607 avocado.core.task.statemachine DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk": spawned successfully
2022-07-06 12:57:36,607 avocado.core.task.statemachine DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild": spawned successfully
2022-07-06 12:57:36,608 avocado.core.task.statemachine DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross": spawned successfully
2022-07-06 12:57:36,608 avocado.core.task.statemachine DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk": spawned successfully
2022-07-06 12:57:36,608 avocado.core.task.statemachine DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate": spawned successfully
2022-07-06 12:57:36,878 avocado.core.status.repo DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross" started message: "{'status': 'started', 'time': 27414865.26078971, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/02-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross', 'id': '02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross'}"
2022-07-06 12:57:36,878 avocado.core.status.repo DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild" started message: "{'status': 'started', 'time': 27414865.260983545, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/01-_builds_ebsy_debian_isar_testsuite_citest.py_CcacheTest.test_ccache_rebuild', 'id': '01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild'}"
2022-07-06 12:57:36,881 avocado.core.status.repo DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu" started message: "{'status': 'started', 'time': 27414865.26489857, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/04-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_ubuntu', 'id': '04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu'}"
2022-07-06 12:57:36,887 avocado.core.status.repo DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm" started message: "{'status': 'started', 'time': 27414865.269975588, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/05-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_bookworm', 'id': '05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm'}"
2022-07-06 12:57:36,888 avocado.core.status.repo DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi" started message: "{'status': 'started', 'time': 27414865.270435356, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/03-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_rpi', 'id': '03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi'}"
2022-07-06 12:57:36,888 avocado.core.status.repo DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk" started message: "{'status': 'started', 'time': 27414865.270494, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/06-_builds_ebsy_debian_isar_testsuite_citest.py_SdkTest.test_sdk', 'id': '06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk'}"
2022-07-06 12:57:36,892 avocado.core.status.repo DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild" started message: "{'status': 'started', 'time': 27414865.275236577, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/07-_builds_ebsy_debian_isar_testsuite_citest.py_RebuildTest.test_rebuild', 'id': '07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild'}"
2022-07-06 12:57:36,897 avocado.core.status.repo DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross" started message: "{'status': 'started', 'time': 27414865.280718807, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/08-_builds_ebsy_debian_isar_testsuite_citest.py_ContainerImageTest.test_nocross', 'id': '08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross'}"
2022-07-06 12:57:36,905 avocado.core.status.repo DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk" started message: "{'status': 'started', 'time': 27414865.289300628, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/09-_builds_ebsy_debian_isar_testsuite_citest.py_ContainerSdkTest.test_container_sdk', 'id': '09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk'}"
2022-07-06 12:57:36,908 avocado.core.status.repo DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate" started message: "{'status': 'started', 'time': 27414865.292482257, 'output_dir': '/builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/10-_builds_ebsy_debian_isar_testsuite_citest.py_SstateTest.test_sstate', 'id': '10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate'}"
2022-07-06 12:57:36,911 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross: STARTED
2022-07-06 12:57:36,911 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild: STARTED
2022-07-06 12:57:36,912 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu: STARTED
2022-07-06 12:57:36,912 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm: STARTED
2022-07-06 12:57:36,912 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi: STARTED
2022-07-06 12:57:36,913 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk: STARTED
2022-07-06 12:57:36,913 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild: STARTED
2022-07-06 12:57:36,913 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross: STARTED
2022-07-06 12:57:36,913 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk: STARTED
2022-07-06 12:57:36,914 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate: STARTED
2022-07-06 13:02:02,888 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:02:03,243 avocado.core.status.repo DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi" finished message: "{'result': 'cancel', 'fail_reason': 'KFAIL', 'status': 'finished', 'time': 27415131.33224191}"
2022-07-06 13:02:03,277 avocado.core.task.statemachine DEBUG| Task "03-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi" finished
2022-07-06 13:02:03,285 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_rpi: CANCEL
2022-07-06 13:02:03,285 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/03-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_rpi
2022-07-06 13:03:02,947 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:03:02,947 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:03:02,948 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:03:03,231 avocado.core.status.repo DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild" finished message: "{'result': 'fail', 'fail_reason': 'Bitbake failed', 'status': 'finished', 'time': 27415191.392744526}"
2022-07-06 13:03:03,261 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild: FAIL
2022-07-06 13:03:03,261 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/01-_builds_ebsy_debian_isar_testsuite_citest.py_CcacheTest.test_ccache_rebuild
2022-07-06 13:03:03,290 avocado.core.task.statemachine DEBUG| Task "01-/builds/debian/isar/testsuite/citest.py:CcacheTest.test_ccache_rebuild" finished
2022-07-06 13:04:03,003 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:04:03,003 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:04:03,004 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:04:03,004 cibuilder L0165 ERROR| ERROR: Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).
2022-07-06 13:04:03,383 avocado.core.status.repo DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk" finished message: "{'result': 'fail', 'fail_reason': 'Bitbake failed', 'status': 'finished', 'time': 27415251.441971876}"
2022-07-06 13:04:03,419 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk: FAIL
2022-07-06 13:04:03,419 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/09-_builds_ebsy_debian_isar_testsuite_citest.py_ContainerSdkTest.test_container_sdk
2022-07-06 13:04:03,420 avocado.core.task.statemachine DEBUG| Task "09-/builds/debian/isar/testsuite/citest.py:ContainerSdkTest.test_container_sdk" finished
2022-07-06 13:05:03,008 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:05:03,008 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:05:03,009 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:05:03,009 cibuilder L0165 ERROR| ERROR: Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).
2022-07-06 13:05:03,032 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:05:03,033 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:05:03,033 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:05:03,048 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:05:03,049 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:05:03,049 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:05:03,049 cibuilder L0165 ERROR| ERROR: Unable to connect to bitbake server, or start one (server startup failures would be in bitbake-cookerdaemon.log).
2022-07-06 13:05:03,056 cibuilder L0165 ERROR| NOTE: Reconnecting to bitbake server...
2022-07-06 13:05:03,057 cibuilder L0165 ERROR| NOTE: No reply from server in 30s
2022-07-06 13:05:03,057 cibuilder L0165 ERROR| NOTE: Retrying server connection (#8)...
2022-07-06 13:05:03,312 avocado.core.status.repo DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross" finished message: "{'result': 'fail', 'fail_reason': 'Bitbake failed', 'status': 'finished', 'time': 27415311.49313946}"
2022-07-06 13:05:03,317 avocado.core.status.repo DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk" finished message: "{'result': 'fail', 'fail_reason': 'Bitbake failed', 'status': 'finished', 'time': 27415311.45401031}"
2022-07-06 13:05:03,339 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross: FAIL
2022-07-06 13:05:03,339 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/02-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross
2022-07-06 13:05:03,340 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk: FAIL
2022-07-06 13:05:03,341 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/06-_builds_ebsy_debian_isar_testsuite_citest.py_SdkTest.test_sdk
2022-07-06 13:05:03,348 avocado.core.task.statemachine DEBUG| Task "02-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross" finished
2022-07-06 13:05:03,360 avocado.core.task.statemachine DEBUG| Task "06-/builds/debian/isar/testsuite/citest.py:SdkTest.test_sdk" finished
2022-07-06 13:05:03,366 avocado.core.status.repo DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild" finished message: "{'result': 'error', 'fail_reason': "'LAYERDIR_core'", 'status': 'finished', 'time': 27415311.567326404}"
2022-07-06 13:05:03,393 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild: ERROR
2022-07-06 13:05:03,394 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/07-_builds_ebsy_debian_isar_testsuite_citest.py_RebuildTest.test_rebuild
2022-07-06 13:05:03,398 avocado.core.task.statemachine DEBUG| Task "07-/builds/debian/isar/testsuite/citest.py:RebuildTest.test_rebuild" finished
2022-07-06 13:05:03,406 avocado.core.status.repo DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross" finished message: "{'result': 'fail', 'fail_reason': 'Bitbake failed', 'status': 'finished', 'time': 27415311.512698233}"
2022-07-06 13:05:03,438 avocado.core.status.repo DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu" finished message: "{'result': 'cancel', 'fail_reason': 'KFAIL', 'status': 'finished', 'time': 27415311.483954832}"
2022-07-06 13:05:03,442 avocado.core.task.statemachine DEBUG| Task "08-/builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross" finished
2022-07-06 13:05:03,446 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:ContainerImageTest.test_nocross: FAIL
2022-07-06 13:05:03,446 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/08-_builds_ebsy_debian_isar_testsuite_citest.py_ContainerImageTest.test_nocross
2022-07-06 13:05:03,447 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu: CANCEL
2022-07-06 13:05:03,448 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/04-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_ubuntu
2022-07-06 13:05:03,485 avocado.core.task.statemachine DEBUG| Task "04-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_ubuntu" finished
2022-07-06 13:23:58,652 avocado.core.status.repo DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate" finished message: "{'result': 'pass', 'status': 'finished', 'time': 27416446.997061707}"
2022-07-06 13:23:58,693 avocado.core.task.statemachine DEBUG| Task "10-/builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate" finished
2022-07-06 13:23:58,706 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:SstateTest.test_sstate: PASS
2022-07-06 13:23:58,706 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/10-_builds_ebsy_debian_isar_testsuite_citest.py_SstateTest.test_sstate
2022-07-06 13:31:56,458 avocado.core.status.repo DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm" finished message: "{'result': 'pass', 'status': 'finished', 'time': 27416924.808192104}"
2022-07-06 13:31:56,483 avocado.test INFO | /builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm: PASS
2022-07-06 13:31:56,484 avocado.test INFO | More information in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77/test-results/05-_builds_ebsy_debian_isar_testsuite_citest.py_CrossTest.test_cross_bookworm
2022-07-06 13:31:56,493 avocado.core.task.statemachine DEBUG| Task "05-/builds/debian/isar/testsuite/citest.py:CrossTest.test_cross_bookworm" finished
2022-07-06 13:31:56,545 avocado.test INFO | Test results available in /builds/debian/isar/build/job-results/job-2022-07-06T12.57-f9d6d77
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0
2022-07-06 14:01 ` Henning Schild
@ 2022-07-06 16:27 ` Baurzhan Ismagulov
2022-07-07 9:31 ` Henning Schild
0 siblings, 1 reply; 10+ messages in thread
From: Baurzhan Ismagulov @ 2022-07-06 16:27 UTC (permalink / raw)
To: isar-users; +Cc: Quirin Gylstorff, Henning Schild
On Wed, Jul 06, 2022 at 04:01:48PM +0200, Henning Schild wrote:
> > diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
> > index 2513f1a0..b1ec6912 100755
> > --- a/scripts/ci_build.sh
> > +++ b/scripts/ci_build.sh
> > @@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then
> > rm -rf /tmp/avocado_venv
> > virtualenv --python python3 /tmp/avocado_venv
> > source /tmp/avocado_venv/bin/activate
> > - pip install avocado-framework
> > + pip install avocado-framework==96.0
>
> Once the code is reworked so it does not use the legacy feature any
> longer this pinning should probably not be dropped, it can be moved
> every once in a while, but getting a random version is simply not good.
> As we see again here.
Not including avocado in kas-container is kas's decision. This workaround was
requested on this list and we applied it. If you ask me, I don't want to have
it and still suggest to use debs.
> Especially not when ilbers does not run this bit in their CI, having
> avocado already installed in some version. Maybe we should always use
> that venv/pip version no matter if the host is contaminated already
> with some other random version.
This is one of the reasons to avoid pip, which we have repeatedly suggested.
> How is the mainline issue for debian going anyhow?
We've contacted Debian, got initial feedback and fixed most of that. The
remaining issues will be clarified with the upstream. We'll send the updated
version and ask for the review.
> Time to grab some tequila to wash down the guacamole and sing some "i
> told you so" songs. pip pip hurray!
I call everyone on this list to report the issues and discuss specific
solutions. I can also start "told you to use debs" songs which won't solve
anyone's problems.
> When it comes to testing the maintainer should really make it as simple
> as possible for people to run the tests, ideally with the very same
> outcome as the pipelines of the maintainer.
I think providing a deb in an apt repo is as simple as possible for people to
run the tests. Way simpler and cleaner than the pip stuff. And using the same
deb would result in the same outcome.
> Also it should be easy for
> users to contribute to the test suite, so it will be reasonable to ask
> people to bring tests with their features.
> IMHO the whole avocado story made both aspects worse than before.
If you have specific difficulties contributing to the testsuite, feel free to
share them here. From the frameworks that you had suggested, any of those would
require getting familiar with writing testcases, so currently I don't see major
differences in this specific aspect, but there are important advantages in
other aspects. I admit that since we spend huge amounts of machine-hours for
running CI on every patch set, we do have special requirements for the test
framework. And I think the result is good for downstreams as well.
> Only
> for some features that the maintainer wanted, but what they get is
> ontested patches because they are the only ones able to run that beast.
This is not true, you are running avocado in your CI. You can also run specific
testcases in kas-container, just like with any other framework. If desired, we
could contribute docs or make a community workshop on using the testsuite.
With kind regards,
Baurzhan
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0
2022-07-06 16:27 ` Baurzhan Ismagulov
@ 2022-07-07 9:31 ` Henning Schild
0 siblings, 0 replies; 10+ messages in thread
From: Henning Schild @ 2022-07-07 9:31 UTC (permalink / raw)
To: Baurzhan Ismagulov; +Cc: isar-users, Quirin Gylstorff
Am Wed, 6 Jul 2022 18:27:41 +0200
schrieb Baurzhan Ismagulov <ibr@radix50.net>:
> On Wed, Jul 06, 2022 at 04:01:48PM +0200, Henning Schild wrote:
> > > diff --git a/scripts/ci_build.sh b/scripts/ci_build.sh
> > > index 2513f1a0..b1ec6912 100755
> > > --- a/scripts/ci_build.sh
> > > +++ b/scripts/ci_build.sh
> > > @@ -21,7 +21,7 @@ if ! command -v avocado > /dev/null; then
> > > rm -rf /tmp/avocado_venv
> > > virtualenv --python python3 /tmp/avocado_venv
> > > source /tmp/avocado_venv/bin/activate
> > > - pip install avocado-framework
> > > + pip install avocado-framework==96.0
> >
> > Once the code is reworked so it does not use the legacy feature any
> > longer this pinning should probably not be dropped, it can be moved
> > every once in a while, but getting a random version is simply not
> > good. As we see again here.
>
> Not including avocado in kas-container is kas's decision. This
> workaround was requested on this list and we applied it. If you ask
> me, I don't want to have it and still suggest to use debs.
pip is kind of ok when pinning the version, removing the pin was the
problem
>
> > Especially not when ilbers does not run this bit in their CI, having
> > avocado already installed in some version. Maybe we should always
> > use that venv/pip version no matter if the host is contaminated
> > already with some other random version.
>
> This is one of the reasons to avoid pip, which we have repeatedly
> suggested.
That deb of yours does not count as a deb. It is as unmaintained as the
debianization in avocado itself, probably not tested in bookworm ...
and what have you.
The pip way is at least maintained and recent. If one never updates
avocado one will happily write tests using deprecated features ...
forcing oneself to stick to the old version forever.
Not to mention that some people might want to run stuff on non-debian
distros. i.e. the one i tried to get in with the arm64 efi booting, the
build itself done in a container (debian) the boot tests initially
done/developed on the host (gentoo).
>
> > How is the mainline issue for debian going anyhow?
>
> We've contacted Debian, got initial feedback and fixed most of that.
> The remaining issues will be clarified with the upstream. We'll send
> the updated version and ask for the review.
>
>
> > Time to grab some tequila to wash down the guacamole and sing some
> > "i told you so" songs. pip pip hurray!
>
> I call everyone on this list to report the issues and discuss specific
> solutions. I can also start "told you to use debs" songs which won't
> solve anyone's problems.
Both lack debian upstream quality. Again it is fine as long as it has
the == ... maybe together with a --no-deps if possible.
>
> > When it comes to testing the maintainer should really make it as
> > simple as possible for people to run the tests, ideally with the
> > very same outcome as the pipelines of the maintainer.
>
> I think providing a deb in an apt repo is as simple as possible for
> people to run the tests. Way simpler and cleaner than the pip stuff.
> And using the same deb would result in the same outcome.
I do not think so. What one could do is fetch upstream avocado, build
their package and install it. Do that every single time, also in the
jenkins setups.
> > Also it should be easy for
> > users to contribute to the test suite, so it will be reasonable to
> > ask people to bring tests with their features.
> > IMHO the whole avocado story made both aspects worse than before.
>
> If you have specific difficulties contributing to the testsuite, feel
> free to share them here. From the frameworks that you had suggested,
> any of those would require getting familiar with writing testcases,
> so currently I don't see major differences in this specific aspect,
> but there are important advantages in other aspects. I admit that
> since we spend huge amounts of machine-hours for running CI on every
> patch set, we do have special requirements for the test framework.
> And I think the result is good for downstreams as well.
>From what i saw the tests are pretty convoluted and python is not
properly used. But that has nothing to do with avocado, just the way
the tests have been written.
> > Only
> > for some features that the maintainer wanted, but what they get is
> > ontested patches because they are the only ones able to run that
> > beast.
>
> This is not true, you are running avocado in your CI. You can also
> run specific testcases in kas-container, just like with any other
> framework. If desired, we could contribute docs or make a community
> workshop on using the testsuite.
We are trying to ... sometimes ... if it works. But for sure not
always. I am still often finding myself in the place where i send
untested stuff ... well local manual tested and then send.
And one reason people skip tests is still that it is pretty hard and
time consuming to run them. And they are very random and likely to fail
anyhow.
So i just send ... maybe i push to my poller branch of your jenkins ...
but this will always go red anyhow ... like next does all the time. The
testsuite failing in more than 20% in the cases anyways ... means
people stop caring about it. It is "rainy thunderstorm" in jenkins
anyhow or "red" in gitlab ... it was before your patch and it remains
with your patch.
At least the reports ease that a bit, if people still care to look what
is behind "red" or "thunderstorm"
Henning
>
> With kind regards,
> Baurzhan
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/2] Fix .gitlab-ci build
2022-07-06 11:46 [PATCH 0/2] Fix .gitlab-ci build Quirin Gylstorff
2022-07-06 11:46 ` [PATCH 1/2] gitlab-ci: update kas-isar image Quirin Gylstorff
2022-07-06 11:46 ` [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0 Quirin Gylstorff
@ 2022-07-08 7:47 ` Anton Mikanovich
2022-07-08 16:31 ` Anton Mikanovich
3 siblings, 0 replies; 10+ messages in thread
From: Anton Mikanovich @ 2022-07-08 7:47 UTC (permalink / raw)
To: Quirin Gylstorff, isar-users; +Cc: Baurzhan Ismagulov, Henning Schild
06.07.2022 14:46, Quirin Gylstorff wrote:
> From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
>
> Update kas-isar to 3.0.2 for sbuild support
> Pin avocado-framework version to avoid error `Suite creation for runner "runner" is not supported`
>
> Quirin Gylstorff (2):
> gitlab-ci: update kas-isar image
> scripts/ci_build.sh: Set avocado-framework version to 96.0
>
> .gitlab-ci.yml | 2 +-
> scripts/ci_build.sh | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
Hello, we are going to merge this to next today if no objections.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 0/2] Fix .gitlab-ci build
2022-07-06 11:46 [PATCH 0/2] Fix .gitlab-ci build Quirin Gylstorff
` (2 preceding siblings ...)
2022-07-08 7:47 ` [PATCH 0/2] Fix .gitlab-ci build Anton Mikanovich
@ 2022-07-08 16:31 ` Anton Mikanovich
3 siblings, 0 replies; 10+ messages in thread
From: Anton Mikanovich @ 2022-07-08 16:31 UTC (permalink / raw)
To: Quirin Gylstorff, isar-users
06.07.2022 14:46, Quirin Gylstorff wrote:
> From: Quirin Gylstorff <quirin.gylstorff@siemens.com>
>
> Update kas-isar to 3.0.2 for sbuild support
> Pin avocado-framework version to avoid error `Suite creation for runner "runner" is not supported`
>
> Quirin Gylstorff (2):
> gitlab-ci: update kas-isar image
> scripts/ci_build.sh: Set avocado-framework version to 96.0
>
> .gitlab-ci.yml | 2 +-
> scripts/ci_build.sh | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
>
Applied to next, thanks.
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2022-07-08 16:31 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-06 11:46 [PATCH 0/2] Fix .gitlab-ci build Quirin Gylstorff
2022-07-06 11:46 ` [PATCH 1/2] gitlab-ci: update kas-isar image Quirin Gylstorff
2022-07-06 11:46 ` [PATCH 2/2] scripts/ci_build.sh: Set avocado-framework version to 96.0 Quirin Gylstorff
2022-07-06 12:54 ` Gylstorff Quirin
2022-07-06 14:51 ` Gylstorff Quirin
2022-07-06 14:01 ` Henning Schild
2022-07-06 16:27 ` Baurzhan Ismagulov
2022-07-07 9:31 ` Henning Schild
2022-07-08 7:47 ` [PATCH 0/2] Fix .gitlab-ci build Anton Mikanovich
2022-07-08 16:31 ` Anton Mikanovich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox