Skip to content

Commit

Permalink
Removed trickified shared test from MAC CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Pherring04 committed Jan 15, 2025
1 parent 74c7512 commit 4af3fc3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions trickops.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,23 @@ def run( self ):
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

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
Expand Down

0 comments on commit 4af3fc3

Please sign in to comment.