diff --git a/.github/workflows/general-check.yaml b/.github/workflows/general-check.yaml deleted file mode 100644 index 80c461cba..000000000 --- a/.github/workflows/general-check.yaml +++ /dev/null @@ -1,138 +0,0 @@ -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - Msrv-Check: - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - rust: - - 1.75.0 # MSRV - - steps: - - uses: actions/checkout@v2 - - uses: Swatinem/rust-cache@v1.2.0 - - uses: actions-rs/toolchain@v1 - with: - toolchain: ${{ matrix.rust }} - override: true - - name: Build Projects - run: | - cargo build --manifest-path=benches/Cargo.toml - cargo build --manifest-path=protocols/Cargo.toml - cargo build --manifest-path=roles/Cargo.toml - cargo build --manifest-path=utils/Cargo.toml - - shared-strategy: &shared-strategy - strategy: - matrix: - os: - - macos-latest - - ubuntu-latest - include: - - os: macos-latest - target: x86_64-apple-darwin - - os: ubuntu-latest - target: x86_64-unknown-linux-musl - - Semver-check: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - uses: actions/cache@v2 - with: - path: ~/.cargo/registry - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-registry- - - uses: actions/cache@v2 - with: - path: ~/.cargo/git - key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-index- - - run: sudo apt-get update && sudo apt-get install -y cmake - - run: cargo install cargo-semver-checks --version 0.37.0 --locked - - name: Run Semver Checks - run: | - for dir in \ - common \ - utils/buffer \ - protocols/v2/binary-sv2/no-serde-sv2/codec \ - protocols/v2/binary-sv2/serde-sv2 \ - protocols/v2/binary-sv2/binary-sv2 \ - protocols/v2/const-sv2 \ - protocols/v2/framing-sv2 \ - protocols/v2/noise-sv2 \ - protocols/v2/codec-sv2 \ - protocols/v2/subprotocols/common-messages \ - protocols/v2/subprotocols/job-declaration \ - protocols/v2/subprotocols/mining \ - protocols/v2/subprotocols/template-distribution \ - protocols/v2/sv2-ffi \ - protocols/v2/roles-logic-sv2 \ - protocols/v1 \ - utils/bip32-key-derivation \ - utils/error-handling \ - utils/key-utils \ - roles/roles-utils/network-helpers \ - roles/roles-utils/rpc; do - cargo semver-checks --manifest-path="$dir/Cargo.toml" - done - - Rust-fmt: - <<: *shared-strategy - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v4 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: nightly - override: true - components: rustfmt - - name: Run fmt in different workspaces and crates - run: | - for manifest in \ - benches/Cargo.toml \ - common/Cargo.toml \ - protocols/Cargo.toml \ - roles/Cargo.toml \ - utils/Cargo.toml \ - utils/message-generator/Cargo.toml; do - cargo fmt --all --manifest-path=$manifest -- --check - done - - clippy-check-lint: - <<: *shared-strategy - runs-on: ${{ matrix.os }} - steps: - - uses: actions/checkout@v4 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: 1.75.0 - override: true - components: clippy - - name: Run Clippy on different workspaces and crates - run: | - for manifest in \ - benches/Cargo.toml \ - common/Cargo.toml \ - protocols/Cargo.toml \ - roles/Cargo.toml \ - utils/Cargo.toml \ - utils/message-generator/Cargo.toml; do - cargo clippy --manifest-path=$manifest -- -D warnings -A dead-code - done