Skip to content

Commit

Permalink
improve
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-aranha-cw committed May 23, 2024
1 parent 9e03646 commit d751ad3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:

jobs:
e2e-automine-stratus:
name: E2E Stratus in-memory
name: E2E Automine Stratus in-memory
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus automine'
Expand All @@ -36,7 +36,7 @@ jobs:
cancel-in-progress: true

e2e-automine-stratus-postgres:
name: E2E Stratus Postgres
name: E2E Automine Stratus Postgres
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus-postgres automine'
Expand All @@ -46,7 +46,7 @@ jobs:
cancel-in-progress: true

e2e-automine-stratus-rocks:
name: E2E Stratus Rocks
name: E2E Automine Stratus Rocks
uses: ./.github/workflows/_setup-e2e.yml
with:
justfile_recipe: 'e2e-stratus-rocks automine'
Expand Down
6 changes: 3 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ e2e-stratus block-mode="automine" test="":

echo "-> Starting Stratus"
just build || exit 1
just run -a 0.0.0.0:3000 > stratus.log &
just run -a 0.0.0.0:3000 --block-mode {{block-mode}} > stratus.log &

echo "-> Waiting Stratus to start"
wait-service --tcp 0.0.0.0:3000 -t {{ wait_service_timeout }} -- echo
Expand All @@ -225,7 +225,7 @@ e2e-stratus-rocks block-mode="automine" test="":

echo "-> Starting Stratus"
just build || exit 1
just run -a 0.0.0.0:3000 --perm-storage=rocks > stratus.log &
just run -a 0.0.0.0:3000 --block-mode {{block-mode}} --perm-storage=rocks > stratus.log &

echo "-> Waiting Stratus to start"
wait-service --tcp 0.0.0.0:3000 -t {{ wait_service_timeout }} -- echo
Expand Down Expand Up @@ -254,7 +254,7 @@ e2e-stratus-postgres block-mode="automine" test="":

echo "-> Starting Stratus"
just build || exit 1
just run -a 0.0.0.0:3000 --perm-storage {{ database_url }} > stratus.log &
just run -a 0.0.0.0:3000 --block-mode {{block-mode}} --perm-storage {{ database_url }} > stratus.log &

echo "-> Waiting Stratus to start"
wait-service --tcp 0.0.0.0:3000 -t {{ wait_service_timeout }} -- echo
Expand Down

0 comments on commit d751ad3

Please sign in to comment.