Skip to content

Commit

Permalink
Merge branch 'main' into metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
dinhani-cw authored Apr 3, 2024
2 parents d40c08d + 1c3cdde commit 9ce288c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e-contracts-hybrid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ jobs:
run: just contracts-clone --${{ matrix.contract }}

- name: Run e2e tests
run: PERM_STORAGE=hybrid://postgres:[email protected]:5432/stratus just contracts-test-stratus-postgres --${{ matrix.contract }}
run: CARGO_PROFILE_RELEASE_DEBUG=0 PERM_STORAGE=hybrid://postgres:[email protected]:5432/stratus just contracts-test-stratus-postgres --${{ matrix.contract }}
2 changes: 1 addition & 1 deletion .github/workflows/e2e-contracts-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@ jobs:
run: just contracts-clone --${{ matrix.contract }}

- name: Run e2e tests
run: PERM_STORAGE=postgres://postgres:[email protected]:5432/stratus just contracts-test-stratus-postgres --${{ matrix.contract }}
run: CARGO_PROFILE_RELEASE_DEBUG=0 PERM_STORAGE=postgres://postgres:[email protected]:5432/stratus just contracts-test-stratus-postgres --${{ matrix.contract }}
5 changes: 2 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import '.justfile_helpers' # _lint, _outdated

# Environment variables (automatically set in all actions).
export CARGO_PROFILE_RELEASE_DEBUG := "1"
export CARGO_PROFILE_RELEASE_DEBUG := env("CARGO_PROFILE_RELEASE_DEBUG", "1")
export RUST_BACKTRACE := "1"
export RUST_LOG := env("RUST_LOG", "stratus=info,rpc-downloader=info,importer-offline=info,importer-online=info,state-validator=info")

Expand Down Expand Up @@ -422,5 +422,4 @@ contracts-coverage *args="":
contracts-coverage-erase:
#!/bin/bash
cd e2e-contracts/repos
rm -rf */coverage

rm -rf */coverage

0 comments on commit 9ce288c

Please sign in to comment.