Skip to content

Commit

Permalink
ci: fix argument ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
dhth committed Aug 13, 2024
1 parent 0f3d3a8 commit 9aedcfc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/back-compat-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
run: |
/var/tmp/omm_head --db-path=/var/tmp/throwaway.db 'test: a task from PR HEAD'
/var/tmp/omm_head --db-path=/var/tmp/throwaway.db tasks
./.github/scripts/checknumtasks.sh 2 "$(/var/tmp/omm_head --db-path=/var/tmp/throwaway.db tasks | wc -l | xargs)"
./.github/scripts/checknumtasks.sh "$(/var/tmp/omm_head --db-path=/var/tmp/throwaway.db tasks | wc -l | xargs)" 2
2 changes: 1 addition & 1 deletion .github/workflows/back-compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
run: |
/var/tmp/omm_head --db-path=/var/tmp/throwaway.db 'test: a task from main HEAD'
/var/tmp/omm_head --db-path=/var/tmp/throwaway.db tasks
./.github/scripts/checknumtasks.sh 2 "$(/var/tmp/omm_head --db-path=/var/tmp/throwaway.db tasks | wc -l | xargs)"
./.github/scripts/checknumtasks.sh "$(/var/tmp/omm_head --db-path=/var/tmp/throwaway.db tasks | wc -l | xargs)" 2
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,4 @@ jobs:
cat assets/sample-tasks.txt | ./omm import
./omm 'test: a task'
./omm tasks
./.github/scripts/checknumtasks.sh "$(./omm tasks | wc -l | xargs)" 11
2 changes: 0 additions & 2 deletions assets/sample-tasks.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
traps: Set up an ACME trap for the Road Runner
tech: Order new ACME rocket skates
traps: Draw fake tunnel on the canyon wall
tech: Check ACME catalog for new gadgets
Expand All @@ -7,6 +6,5 @@ tech: Assemble ACME jet-propelled pogo stick
plan: Plan the next trap location
orders: Buy more bird seed for the bait
tech: Install spring-loaded boxing glove
design: Design a new blueprint for capturing the Road Runner
order: Order a lifetime supply of ACME bird seed to lure Road Runner
traps: Paint a fake bridge over a dry riverbed

0 comments on commit 9aedcfc

Please sign in to comment.