Skip to content

Commit

Permalink
ci: gvsoc now take target from envvar
Browse files Browse the repository at this point in the history
  • Loading branch information
Germain Haugou committed Jul 15, 2024
1 parent 8039c2b commit e5bfd1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/sim/Simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ class GvsocSimulation(Simulation):
def __init__(self, sim_bin=None, cmd=None, **kwargs):
super().__init__(**kwargs)

self.cmd = ['gvsoc', '--target', 'pulp.snitch.snitch_cluster_single', '--binary',
self.cmd = ['gvsoc', '--target', os.environ.get('GVSOC_TARGET'), '--binary',
str(self.elf), 'run']

def successful(self):
Expand Down

0 comments on commit e5bfd1a

Please sign in to comment.