-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There were a few problems with the changes in #3656. First, the YAML workflow file was poorly indented, which caused the job not to be evaluated, so we got a false green. Beyond that, the wrapper script needed handling for an undefined var, and a tweak to the backgrounding/logging changes. All are updated, and this change passes locally.
- Loading branch information
Showing
4 changed files
with
25 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,30 +22,24 @@ jobs: | |
toolchain: stable | ||
- name: Load rust cache | ||
uses: astriaorg/[email protected] | ||
|
||
- name: Install cometbft binary | ||
run: ./deployments/scripts/install-cometbft | ||
|
||
- name: Run the smoke test suite | ||
run: | | ||
export PATH="$HOME/bin:$PATH" | ||
./deployments/scripts/smoke-test.sh | ||
- name: Display comet logs | ||
if: always() | ||
run: cat deployments/logs/comet.log | ||
- name: Display pd logs | ||
if: always() | ||
run: cat deployments/logs/pd.log | ||
- name: Display pclientd logs | ||
if: always() | ||
run: cat deployments/logs/pclientd.log | ||
- name: Display pcli logs | ||
if: always() | ||
run: cat deployments/logs/pcli.log | ||
env: | ||
TESTNET_RUNTIME: 2m | ||
|
||
- name: Display comet logs | ||
if: always() | ||
run: cat comet.log | ||
|
||
- name: Display pd logs | ||
if: always() | ||
run: cat pd.log | ||
|
||
- name: Display pclientd logs | ||
if: always() | ||
run: cat pclientd.log | ||
|
||
- name: Display pcli logs | ||
if: always() | ||
run: cat pcli.log | ||
|
||
env: | ||
TESTNET_RUNTIME: 2m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters