Skip to content

Commit

Permalink
adds dir
Browse files Browse the repository at this point in the history
  • Loading branch information
claravanstaden committed Oct 3, 2024
1 parent 7fd8ff7 commit 8d2dc16
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
run: echo "OUTPUT_DIR=${GITHUB_WORKSPACE}/tmp" >> $GITHUB_ENV
- name: Set log directory environment variable
run: echo "LOG_DIR=${GITHUB_WORKSPACE}/log-tmp" >> $GITHUB_ENV
- name: polkadot-sdk dir
run: echo "POLKADOT_SDK_DIR=./polkadot-sdk" >> $GITHUB_ENV
- name: Create directories
run: mkdir -p $OUTPUT_DIR && mkdir -p $LOG_DIR
- uses: actions/cache@v1
Expand All @@ -58,7 +60,10 @@ jobs:
nix develop -c sh -c '
./scripts/init-smoketests.sh &&
cd web/packages/test &&
./scripts/start-services.sh'
./scripts/start-services.sh > "${{ env.LOG_DIR }}/start-services.log" 2>&1 &) &&
sleep 10 &&
./scripts/check-relayer.sh &&
./scripts/run-smoketests.sh'
continue-on-error: true
- name: Save start-services log file
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 8d2dc16

Please sign in to comment.