Merge pull request #128 from mempool/knorrium/runner

This commit is contained in:
wiz 2025-12-26 23:25:29 -10:00 committed by GitHub
commit 49436f60db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -10,7 +10,7 @@ name: Compile Check and Lint
jobs:
check:
name: Compile Check
runs-on: ubuntu-latest
runs-on: mempool-ci
steps:
- uses: actions/checkout@v4
- name: Setup Rust
@ -21,7 +21,7 @@ jobs:
fmt:
name: Formatter
runs-on: ubuntu-latest
runs-on: mempool-ci
steps:
- uses: actions/checkout@v4
- name: Setup Rust
@ -32,7 +32,7 @@ jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
runs-on: mempool-ci
steps:
- uses: actions/checkout@v4
- name: Setup Rust
@ -42,7 +42,7 @@ jobs:
- run: cargo test --lib --all-features
compile-freebsd:
runs-on: ubuntu-latest
runs-on: mempool-ci
name: Run Compile Checks in FreeBSD
env:
FREEBSD_VER: "14.3"
@ -86,7 +86,7 @@ jobs:
clippy:
name: Linter
runs-on: ubuntu-latest
runs-on: mempool-ci
needs: [check]
strategy:
matrix: # Try all combinations of features. Some times weird things appear.

View File

@ -16,7 +16,7 @@ permissions:
jobs:
build:
runs-on: ubuntu-latest
runs-on: mempool-ci
timeout-minutes: 120
name: Build and push to DockerHub
steps: