Enable build cache (#3446)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2023-06-21 12:33:00 +07:00
committed by GitHub
parent 2eab0fc71f
commit ef8dfdc006
11 changed files with 51 additions and 24 deletions
+10 -1
View File
@@ -269,12 +269,21 @@ jobs:
# run: |
# cd ./tests
# ./update-snapshot-ci.sh ./tests/db_dump
- name: "Store docker logs"
run: |
cd ./tests/sanity
mkdir logs
docker logs $(docker ps | grep transactor | cut -f 1 -d ' ') > logs/transactor.log
docker logs $(docker ps | grep account | cut -f 1 -d ' ') > logs/transactor.log
docker logs $(docker ps | grep front | cut -f 1 -d ' ') > logs/front.log
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
with:
name: playwright-results
path: ./tests/sanity/playwright-report/
path: |
./tests/sanity/playwright-report/
./tests/sanity/logs
# - name: Upload DB snapshot
# if: always()
# uses: actions/upload-artifact@v3