mirror of
https://github.com/datahaven-xyz/datahaven
synced 2026-05-24 01:38:32 +00:00
fix: Use all self-hosted runners for now (#144)
This commit is contained in:
parent
b1f21e7a96
commit
fe53cec524
4 changed files with 8 additions and 8 deletions
2
.github/workflows/DOCKER-PROD.yml
vendored
2
.github/workflows/DOCKER-PROD.yml
vendored
|
|
@ -23,7 +23,7 @@ on:
|
|||
jobs:
|
||||
build-test-push:
|
||||
runs-on:
|
||||
group: DH-runners
|
||||
labels: bare-metal
|
||||
outputs:
|
||||
image-tag: ${{ steps.last_tag_extractor.outputs.last_tag_value }}
|
||||
defaults:
|
||||
|
|
|
|||
2
.github/workflows/task-build-operator.yml
vendored
2
.github/workflows/task-build-operator.yml
vendored
|
|
@ -16,7 +16,7 @@ jobs:
|
|||
binary-hash: ${{ steps.hash-binary.outputs.datahaven-node-hash }}
|
||||
name: Build operator binary
|
||||
runs-on:
|
||||
group: DH-runners
|
||||
labels: bare-metal
|
||||
env:
|
||||
RUSTC_WRAPPER: "sccache"
|
||||
CARGO_INCREMENTAL: "0"
|
||||
|
|
|
|||
6
.github/workflows/task-rust-lint.yml
vendored
6
.github/workflows/task-rust-lint.yml
vendored
|
|
@ -25,7 +25,7 @@ jobs:
|
|||
cargo-fmt:
|
||||
name: "Check format with rustfmt"
|
||||
runs-on:
|
||||
group: DH-runners
|
||||
labels: bare-metal
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ${{ env.WORKING_DIR }}
|
||||
|
|
@ -44,7 +44,7 @@ jobs:
|
|||
check-rust-lint:
|
||||
name: "Check lint with clippy"
|
||||
runs-on:
|
||||
group: DH-runners
|
||||
labels: bare-metal
|
||||
defaults:
|
||||
run:
|
||||
working-directory: ${{ env.WORKING_DIR }}
|
||||
|
|
@ -62,7 +62,7 @@ jobs:
|
|||
check-cargo-sort:
|
||||
name: "Check Cargo sort"
|
||||
runs-on:
|
||||
group: DH-runners
|
||||
labels: bare-metal
|
||||
|
||||
defaults:
|
||||
run:
|
||||
|
|
|
|||
6
.github/workflows/task-rust-tests.yml
vendored
6
.github/workflows/task-rust-tests.yml
vendored
|
|
@ -17,7 +17,7 @@ jobs:
|
|||
prepare:
|
||||
name: Prepare artifacts for Rust tests
|
||||
runs-on:
|
||||
group: DH-runners
|
||||
labels: bare-metal
|
||||
env:
|
||||
RUSTC_WRAPPER: "sccache"
|
||||
CARGO_INCREMENTAL: "0"
|
||||
|
|
@ -57,7 +57,7 @@ jobs:
|
|||
name: Run all Operator Rust tests (/w partitioning)
|
||||
needs: [prepare]
|
||||
runs-on:
|
||||
group: DH-runners
|
||||
labels: bare-metal
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
|
|
@ -91,7 +91,7 @@ jobs:
|
|||
name: Check tests were successful
|
||||
needs: [all-rust-tests]
|
||||
runs-on:
|
||||
group: DH-runners
|
||||
labels: bare-metal
|
||||
steps:
|
||||
- name: Cleanup test artifacts
|
||||
uses: geekyeggo/delete-artifact@v5
|
||||
|
|
|
|||
Loading…
Reference in a new issue