Skip to content

Commit

Permalink
[1760]: Move the marker keeper to 00 too.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpicyLemon committed May 23, 2024
1 parent ef4347b commit 0ff0210
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,20 @@ jobs:
# and test-race (00) is the shortest (of the race tests) at around 4m00s.
# The x/sanction/simulation test-race is one of the longer ones (at almost 2 minutes), and ends up in part 03.
# By forcing that one into 00, it ends up reducing the overall run-time of this whole workflow by about a minute.
# The x/marker/client/cli tests take around 30s (35s for race), and would be in 01.
# The x/marker/keeper test take about 3s and (12s for race), and would be in 02.
# Moving both of those from to 00 ends up leveling out the times a bit more.
run: |
grep -vF \
-e 'github.com/provenance-io/provenance/x/sanction/simulation' \
-e 'github.com/provenance-io/provenance/x/marker/client/cli' \
-e 'github.com/provenance-io/provenance/x/marker/keeper' \
pkgs.txt > pkgs.txt.tmp
split -d -n l/4 pkgs.txt.tmp pkgs.txt.part.
printf '%s\n' \
'github.com/provenance-io/provenance/x/sanction/simulation' \
'github.com/provenance-io/provenance/x/marker/client/cli' \
'github.com/provenance-io/provenance/x/marker/keeper' \
>> pkgs.txt.part.00
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 0ff0210

Please sign in to comment.