-
Notifications
You must be signed in to change notification settings - Fork 37
52 lines (47 loc) · 1.67 KB
/
sequencer_integration_tests.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
47
48
49
50
51
name: Sequencer-Integration-Tests-CI-Flow
on:
pull_request:
types:
- opened
- reopened
- synchronize
- auto_merge_enabled
- edited
env:
RUSTFLAGS: "-D warnings -C link-arg=-fuse-ld=lld"
# On PR events, cancel existing CI runs on this same PR for this workflow.
# Also, create different concurrency groups for different pushed commits, on push events.
concurrency:
group: >
${{ github.workflow }}-
${{ github.ref }}-
${{ github.event_name == 'pull_request' && 'PR' || github.sha }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
build-and-run-sequencer-positive_flow_integration-test:
runs-on: starkware-ubuntu-latest-large
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/bootstrap
- run: |
cargo build --bin starknet_sequencer_node
cargo build --bin positive_flow_integration_test
target/debug/positive_flow_integration_test
build-and-run-sequencer-revert_flow_integration-test:
runs-on: starkware-ubuntu-latest-large
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/bootstrap
- run: |
cargo build --bin starknet_sequencer_node
cargo build --bin revert_flow_integration_test
target/debug/revert_flow_integration_test
build-and-run-sequencer-restart_flow_integration-test:
runs-on: starkware-ubuntu-latest-large
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/bootstrap
- run: |
cargo build --bin starknet_sequencer_node
cargo build --bin restart_flow_integration_test
target/debug/restart_flow_integration_test