-
Notifications
You must be signed in to change notification settings - Fork 160
46 lines (42 loc) · 1.24 KB
/
rpc_test_repeat.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: RPC tests on repeat
on:
workflow_dispatch:
inputs:
image:
description: 'Forest image to use'
required: false
default: 'ghcr.io/chainsafe/forest:edge-fat'
type: string
schedule:
# Run every day at midnight
- cron: 0 0 * * *
env:
SHELL_IMAGE: busybox
SCRIPT_TIMEOUT_MINUTES: 30
jobs:
calibnet-rpc-checks:
strategy:
fail-fast: false
matrix:
# GH Actions do not support running jobs in a loop.
# This is a workaround to run the same job 100 times.
x: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
y: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
name: Calibnet RPC checks
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Run api compare tests
shell: bash
run: |
IMAGE=${{ github.event.inputs.image }}
if [ -z "$IMAGE" ]; then
IMAGE="ghcr.io/chainsafe/forest:edge-fat"
fi
echo "FROM $IMAGE" > Dockerfile-RPC
export FOREST_DOCKERFILE_OVERRIDE=Dockerfile-RPC
./scripts/tests/api_compare/setup.sh
timeout-minutes: '${{ fromJSON(env.SCRIPT_TIMEOUT_MINUTES) }}'
- name: Dump docker logs
if: always()
uses: jwalton/gh-docker-logs@v2