2023-07-27 18:19:03 +00:00
|
|
|
name: Reproducible Runtime
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- develop
|
|
|
|
paths:
|
|
|
|
- "Cargo.lock"
|
|
|
|
- "common/**"
|
|
|
|
- "crypto/**"
|
|
|
|
- "substrate/**"
|
|
|
|
- "orchestration/runtime/**"
|
|
|
|
- "tests/reproducible-runtime/**"
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- "Cargo.lock"
|
|
|
|
- "common/**"
|
|
|
|
- "crypto/**"
|
|
|
|
- "substrate/**"
|
|
|
|
- "orchestration/runtime/**"
|
|
|
|
- "tests/reproducible-runtime/**"
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-09-15 18:30:18 +00:00
|
|
|
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac
|
2023-07-27 18:19:03 +00:00
|
|
|
|
|
|
|
- name: Install Build Dependencies
|
|
|
|
uses: ./.github/actions/build-dependencies
|
|
|
|
with:
|
|
|
|
github-token: ${{ inputs.github-token }}
|
|
|
|
|
|
|
|
- name: Run Reproducible Runtime tests
|
2023-08-14 15:59:23 +00:00
|
|
|
run: cd tests/reproducible-runtime && GITHUB_CI=true RUST_BACKTRACE=1 cargo test
|