Skip to content

Commit b14dd9c

Browse files
Update CI to use bash orchestration
1 parent a17f0f0 commit b14dd9c

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,15 @@ jobs:
7474
7575
- name: Run inference
7676
run: |
77-
sc2ts daily-extend -v testrun/alignments.db testrun/metadata.db \
78-
testrun/ --min-group-size=2
77+
last_ts=testrun/initial.ts
78+
sc2ts initialise -v $last_ts testrun/match.db
79+
for date in `sc2ts list-dates testrun/metadata.db`; do
80+
out_ts=testrun/$date.ts
81+
sc2ts extend $last_ts $date \
82+
testrun/alignments.db testrun/metadata.db \
83+
testrun/match.db $out_ts --min-group-size=2
84+
last_ts=$out_ts
85+
done
7986
8087
- name: Validate
8188
run: |

0 commit comments

Comments
 (0)