Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

changed all runners to ziserv-2 (self-hosted) #1611

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions .github/workflows/cargo-checkmate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,30 @@ on: [workflow_call]
jobs:
cache-checkmate:
name: Cache checkmate
runs-on: ubuntu-22.04
runs-on: ziserv-2
container:
image: rust:bullseye
if: github.event.pull_request.draft == false
steps:
- uses: taiki-e/cache-cargo-install-action@v2
with:
tool: cargo-checkmate
- uses: actions-rust-lang/setup-rust-toolchain@v1
# - uses: taiki-e/cache-cargo-install-action@v2
# with:
# tool: cargo-checkmate

cargo-checkmate:
name: Cargo checkmate
strategy:
matrix:
phase: [build, check, clippy, doc, format]
needs: cache-checkmate
runs-on: ubuntu-22.04
runs-on: ziserv-2
if: github.event.pull_request.draft == false
env:
RUSTFLAGS: -D warnings
steps:
- uses: taiki-e/cache-cargo-install-action@v2
with:
tool: cargo-checkmate
# - uses: taiki-e/cache-cargo-install-action@v2
# with:
# tool: cargo-checkmate

- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

reject-trailing-whitespace:
name: Reject trailing whitespace
runs-on: ubuntu-22.04
runs-on: ziserv-2
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

reject-trailing-whitespace:
name: Reject trailing whitespace
runs-on: ubuntu-22.04
runs-on: ziserv-2
if: github.event.pull_request.draft == false
steps:
- name: Checkout repository
Expand All @@ -24,7 +24,7 @@ jobs:

run-doc-tests:
name: Run doc tests
runs-on: ubuntu-22.04
runs-on: ziserv-2
if: github.event.pull_request.draft == false
env:
RUSTFLAGS: -D warnings
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
coverage:
name: Coverage
runs-on: ubuntu-22.04
runs-on: ziserv-2
env:
RUSTFLAGS: -D warnings
container:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Build test artifacts
container:
image: zingodevops/ci-build:004
runs-on: ubuntu-22.04
runs-on: ziserv-2
if: github.event.pull_request.draft == false
env:
RUSTFLAGS: -D warnings
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:

run-tests:
name: Run tests
runs-on: ubuntu-22.04
runs-on: ziserv-2
if: github.event.pull_request.draft == false
needs: build-test-artifacts
env:
Expand Down
Loading