File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -74,19 +74,22 @@ jobs:
7474 - name : Run authorize and store (PAPI, RPC node)
7575 working-directory : examples
7676 run : |
77- echo "TEST_DIR=$(mktemp -d /tmp/bulletin-tests-run-XXXXX)" >> $GITHUB_ENV
77+ export TEST_DIR=$(mktemp -d /tmp/bulletin-tests-run-XXXXX)
78+ echo "TEST_DIR=$TEST_DIR" >> $GITHUB_ENV
7879 just run-authorize-and-store "ws"
7980
8081 - name : Run authorize and store (PAPI, smoldot)
8182 working-directory : examples
8283 run : |
83- echo "TEST_DIR=$(mktemp -d /tmp/bulletin-tests-run-XXXXX)" >> $GITHUB_ENV
84+ export TEST_DIR=$(mktemp -d /tmp/bulletin-tests-run-XXXXX)
85+ echo "TEST_DIR=$TEST_DIR" >> $GITHUB_ENV
8486 just run-authorize-and-store "smoldot"
8587
8688 - name : Run store chunked data + DAG-PB (PJS-API, RPC node)
8789 working-directory : examples
8890 run : |
89- echo "TEST_DIR=$(mktemp -d /tmp/bulletin-tests-run-XXXXX)" >> $GITHUB_ENV
91+ export TEST_DIR=$(mktemp -d /tmp/bulletin-tests-run-XXXXX)
92+ echo "TEST_DIR=$TEST_DIR" >> $GITHUB_ENV
9093 just run-store-chunked-data
9194
9295 # Collects logs from the last failed zombienet run.
You can’t perform that action at this time.
0 commit comments