From 4af3fc3b346e106e710928a578e12af4b9e564a5 Mon Sep 17 00:00:00 2001 From: Pherring04 Date: Wed, 15 Jan 2025 15:02:41 -0600 Subject: [PATCH] Removed trickified shared test from MAC CI --- trickops.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/trickops.py b/trickops.py index 901105d9..cbe466e8 100644 --- a/trickops.py +++ b/trickops.py @@ -38,6 +38,11 @@ class SimTestWorkflow(TrickWorkflow): phases = [-1, 0, 1, 2, 3] analysis_jobs = self.get_jobs(kind='analyze') + if platform == "darwin": + for job in build_jobs: + if job.name == "Build test/SIM_trickified_shared" : + print("REMOVING JOB: " + job.name) + build_jobs.remove(job) builds_status = self.execute_jobs(build_jobs, max_concurrent=self.cpus, header='Executing all sim builds.') jobs = build_jobs @@ -45,6 +50,11 @@ class SimTestWorkflow(TrickWorkflow): run_status = 0 for phase in phases: run_jobs = self.get_jobs(kind='run', phase=phase) + if platform == "darwin": + for job in run_jobs: + if job.name == "Run test/SIM_trickified_shared RUN_test/unit_test.py" : + print("REMOVING JOB: " + job.name) + run_jobs.remove(job) this_status = self.execute_jobs(run_jobs, max_concurrent=self.cpus, header="Executing phase " + str(phase) + " runs.", job_timeout=1000) run_status = run_status or this_status jobs += run_jobs