Skip to content

Commit 8931869

Browse files
committed
Fixed ci/cd self-tests
1 parent 6bc559b commit 8931869

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/ci/ci_config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ class CI:
411411
JobNames.INTEGRATION_TEST_ARM: CommonJobConfigs.INTEGRATION_TEST.with_properties(
412412
required_builds=[BuildNames.PACKAGE_AARCH64],
413413
num_batches=6,
414-
#runner_type=Runners.FUNC_TESTER_ARM,
414+
runner_type=Runners.FUNC_TESTER_ARM,
415415
),
416416
JobNames.INTEGRATION_TEST: CommonJobConfigs.INTEGRATION_TEST.with_properties(
417417
required_builds=[BuildNames.PACKAGE_RELEASE],
@@ -557,8 +557,8 @@ class CI:
557557
runner_type=Runners.STYLE_CHECKER
558558
),
559559
JobNames.SIGN_AARCH64: JobConfig(
560-
required_builds=[BuildNames.PACKAGE_RELEASE],
561-
runner_type=Runners.STYLE_CHECKER
560+
required_builds=[BuildNames.PACKAGE_AARCH64],
561+
runner_type=Runners.STYLE_CHECKER_ARM
562562
),
563563
}
564564

tests/ci/ci_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def create_from_pr_message(
4848
res = CiSettings()
4949
pr_info = PRInfo()
5050
if (
51-
(not pr_info.is_pr() and not debug_message)
51+
(not pr_info.is_pr and not debug_message)
5252
or pr_info.body is None
5353
): # if commit_message is provided it's test/debug scenario - do not return
5454
# CI options can be configured in PRs only

0 commit comments

Comments
 (0)