From 5102072950cba0c6b5447ba4aee48b480a1d64fb Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Wed, 13 Sep 2023 17:50:56 -0700 Subject: [PATCH] misc,tests: Rm duplicate running of daily gem5_library_tests The long/daily tests in "tests/gem5/gem5_library_tests" were running in both the "testlib-long-tests" and the "testlib-long-gem5_library_example_tests" job in the Daily tests Workflow. The running in "testlib-long-tests" is removed in this patch. Change-Id: I1c665529e3dcb594ffb7f6e2224077ae366772d6 --- .github/workflows/daily-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/daily-tests.yaml b/.github/workflows/daily-tests.yaml index cf57d804bc..06d37c86a8 100644 --- a/.github/workflows/daily-tests.yaml +++ b/.github/workflows/daily-tests.yaml @@ -76,7 +76,7 @@ jobs: strategy: fail-fast: false matrix: - test-type: [arm_boot_tests, fs, gem5_library_example_tests, gpu, insttest_se, learning_gem5, m5threads_test_atomic, memory, multi_isa, replacement_policies, riscv_boot_tests, stdlib, x86_boot_tests] + test-type: [arm_boot_tests, fs, gpu, insttest_se, learning_gem5, m5threads_test_atomic, memory, multi_isa, replacement_policies, riscv_boot_tests, stdlib, x86_boot_tests] runs-on: [self-hosted, linux, x64, run] container: gcr.io/gem5-test/ubuntu-22.04_all-dependencies:latest needs: [name-artifacts, build-gem5]