From c0bfa896d78fa01ef80ef127e00c985539008f2e Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Wed, 5 Jun 2024 10:28:55 +0300 Subject: [PATCH] ci: remove build workflow We need to collect the dependency names for debian based distros, which I will do at a later date --- .github/workflows/build.yml | 43 ------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 7eabb9b..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Build Cargo Workspace - -on: - workflow_call: - workflow_dispatch: - pull_request: - branches: ["master"] - push: - branches: - - "*" - -env: - CARGO_TERM_COLOR: always - -jobs: - build: - name: Build Cargo Workspace - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Install Nix - uses: DeterminateSystems/nix-installer-action@main - with: - logger: pretty - - - name: Get build dependencies - run: "nix develop .#" - - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - - - uses: Swatinem/rust-cache@v2 - name: Cache dependencies - - - uses: actions-rs/cargo@v1 - name: Build crate - with: - command: build - args: --verbose --all-features