diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index b5a213d24..c17f3e209 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -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' @@ -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' @@ -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' diff --git a/justfile b/justfile index 868d427f3..c1a303e93 100644 --- a/justfile +++ b/justfile @@ -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 @@ -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 @@ -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