-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (37 loc) · 912 Bytes
/
Copy pathpkg_p2p_core.yml
File metadata and controls
41 lines (37 loc) · 912 Bytes
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
name: "dash-p2p-core"
on:
workflow_dispatch:
push:
paths: &paths
- pkgs/p2p_core/**
- pkgs/num/**
- pkgs/params/**
- pkgs/primitives/**
- pkgs/script/**
- pkgs/types/**
- Cargo.lock
- Cargo.toml
- .github/workflows/pkg_p2p_core.yml
- .github/workflows/build_stable.yml
- .github/workflows/build_nightly.yml
- contrib/nix/**
- pyproject.toml
- rust-toolchain.toml
- uv.lock
pull_request:
paths: *paths
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
stable:
uses: ./.github/workflows/build_stable.yml
with:
package: dash-p2p-core
package_dir: p2p_core
nightly:
uses: ./.github/workflows/build_nightly.yml
with:
package: dash-p2p-core
package_dir: p2p_core
secrets: inherit