Skip to content

Commit 8473a31

Browse files
authored
Enable LFS in profiling workflow checkout + reduce frame recording interval (#1278)
* Enable Git LFS in profiling checkout action * Decrease default frame recording interval for profiling
1 parent 71e2764 commit 8473a31

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/run-profiling.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ jobs:
9191
uses: actions/checkout@v4
9292
with:
9393
ref: ${{ github.sha }}
94+
lfs: true
9495

9596
## The profile environment produces outputs in the /results directory
9697
- name: Run profiling in dev environment

src/scripts/profiling/run_profiling.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def run_profiling(
176176
output_name: str = "profiling",
177177
write_html: bool = False,
178178
write_pyisession: bool = False,
179-
interval: float = 1e-1,
179+
interval: float = 2e-1,
180180
initial_population: int = 50000,
181181
simulation_years: int = 5,
182182
simulation_months: int = 0,

0 commit comments

Comments
 (0)