Skip to content

Build Test Results Dashboard #163

Build Test Results Dashboard

Build Test Results Dashboard #163

Workflow file for this run

name: Build Test Results Dashboard
on:
workflow_dispatch:
# push:
# branches:
# - '*'
pull_request:
types: [opened, reopened, synchronize]
# Allows external webhook trigger
repository_dispatch:
types:
- webhook
env:
FORCE_COLORS: 1
jobs:
runall:
runs-on: ubuntu-latest
steps:
- run: curl -sSL https://raw.githubusercontent.com/pdm-project/pdm/main/install-pdm.py | python3 -
- run: pip install jq yq
- uses: actions/checkout@v1
# - uses: actions/checkout@v3
# with:
# repository: eth-infinitism/bundler-spec-tests
# path: bundler-spec-tests
# submodules: true
- run: test -d bundler-spec-tests || git clone --recurse-submodules --depth 1 https://github.com/eth-infinitism/bundler-spec-tests
name: clone bundler-spec-tests
- run: cd bundler-spec-tests && (git describe --tags; git submodule ) | tee .git.status
name: check bundler-spec-tests and submodules status
# restore cache of bundler-spec-tests, and its submodules
- uses: actions/cache@v2
with:
path: bundler-spec-tests
key: ${{ runner.os }}-${{ hashFiles('bundler-spec-tests/pdm.lock') }}
- run: cd bundler-spec-tests; git checkout
name: "re-checkout bundler-spec-tests (on top of cache)"
#for faster "update-deps" for spec
- run: yarn --cwd bundler-spec-tests/spec remove gatsby || echo "already removed"
- run: "cd bundler-spec-tests && pdm install && pdm update-deps"
name: update submodules of bundler-spec-tests
- run: ./runall.sh
name: Run all tests.
- name: Clone and update results repo
run: ./update-results.sh out-results
- name: Push update to results repo
uses: cpina/github-action-push-to-another-repository@main
env:
SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source-directory: 'out-results'
destination-github-username: 'eth-infinitism'
destination-repository-name: 'bundler-test-results'
user-email: dror.tirosh@gmail.com
target-branch: master
# Allow one concurrent deployment
concurrency:
group: "deploy"
cancel-in-progress: true