ci: build on self-hosted runner (#799)
Signed-off-by: Alexis Pentori <alexis@status.im>
This commit is contained in:
parent
98e9cde66d
commit
c03dec4b3d
|
@ -12,7 +12,7 @@ name: PR check
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
name: Check
|
name: Check
|
||||||
runs-on: ubuntu-latest
|
runs-on: ['self-hosted']
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: true
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
|
@ -48,7 +48,7 @@ jobs:
|
||||||
fail-fast: false # all OSes should be tested even if one fails (default: true)
|
fail-fast: false # all OSes should be tested even if one fails (default: true)
|
||||||
matrix:
|
matrix:
|
||||||
feature: [ libp2p, "libp2p,mixnet" ]
|
feature: [ libp2p, "libp2p,mixnet" ]
|
||||||
os: [ ubuntu-latest, macos-latest ] # drop windows for now as risc0 does not support it
|
os: [ self-hosted, macos-latest ] # drop windows for now as risc0 does not support it
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
@ -120,7 +120,7 @@ jobs:
|
||||||
|
|
||||||
lints:
|
lints:
|
||||||
name: Rust lints
|
name: Rust lints
|
||||||
runs-on: ubuntu-latest
|
runs-on: self-hosted
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
feature: [ libp2p, "libp2p,mixnet" ]
|
feature: [ libp2p, "libp2p,mixnet" ]
|
||||||
|
|
|
@ -11,7 +11,7 @@ jobs:
|
||||||
CARGO_INCREMENTAL: 0
|
CARGO_INCREMENTAL: 0
|
||||||
RUSTFLAGS: "-C instrument-coverage"
|
RUSTFLAGS: "-C instrument-coverage"
|
||||||
LLVM_PROFILE_FILE: "nomos-node-%p-%m.profraw"
|
LLVM_PROFILE_FILE: "nomos-node-%p-%m.profraw"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ['self-hosted','ubuntu-22.04']
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue