Skip to content

Commit 87fb673

Browse files
authored
[CI] Increase time limit for macOS clang-test to increase CI time stability (#704)
1 parent 2750488 commit 87fb673

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/mac.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ jobs:
7777
run: scripts/run_tests.py --running-type="processes" --counts 1 2 3 4
7878
env:
7979
PPC_NUM_THREADS: 1
80+
PPC_PERF_MAX_TIME: 30
8081
- name: Run tests (threads)
8182
run: scripts/run_tests.py --running-type="threads" --counts 1 2 3 4
8283
env:

modules/performance/tests/perf_tests.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,9 @@ TEST(PerfTests, CheckPerfPipelineFloat) {
9696
}
9797

9898
TEST(PerfTests, CheckPerfPipelineUint8tSlowTest) {
99+
#ifdef __APPLE__
100+
GTEST_SKIP() << "Skipped on macOS.";
101+
#endif
99102
std::vector<uint8_t> in(128, 1);
100103

101104
auto test_task = std::make_shared<ppc::test::FakePerfTask<std::vector<uint8_t>, uint8_t>>(in);

0 commit comments

Comments
 (0)