Skip to content

Commit 8f2d403

Browse files
committed
cirrus: remove redundant skip logic
As of commit d9183f0 we use the cirrus.yml skip logic to skip based on source changes. As such the add hoc logic inside our test setup can be removed. However as I did not yet implement the skip logic for all tests task in cirrus.yml it must remain for the other tasks for now. I plan to migrate the other in a week or two once we are confident that the cirrus.yml logic works well for us. Signed-off-by: Paul Holzinger <[email protected]>
1 parent f62c3ec commit 8f2d403

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

contrib/cirrus/runner.sh

-8
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,10 @@ function _run_compose_v2() {
6161
}
6262

6363
function _run_int() {
64-
_bail_if_test_can_be_skipped test/e2e
65-
6664
dotest integration
6765
}
6866

6967
function _run_sys() {
70-
_bail_if_test_can_be_skipped test/system
71-
7268
dotest system
7369
}
7470

@@ -79,8 +75,6 @@ function _run_upgrade_test() {
7975
}
8076

8177
function _run_bud() {
82-
_bail_if_test_can_be_skipped test/buildah-bud
83-
8478
showrun ./test/buildah-bud/run-buildah-bud-tests |& logformatter
8579
}
8680

@@ -429,8 +423,6 @@ dotest() {
429423
}
430424

431425
_run_machine-linux() {
432-
_bail_if_test_can_be_skipped pkg/machine/e2e
433-
434426
showrun make localmachine |& logformatter
435427
}
436428

0 commit comments

Comments
 (0)