From 463a07cc2a15a6b93c12c252cfcf4b7c192baf63 Mon Sep 17 00:00:00 2001 From: Rohan Sircar Date: Thu, 22 Apr 2021 20:08:48 +0530 Subject: [PATCH] remove cross from build --- .github/workflows/ci.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04424f2..c883ed5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -86,12 +86,12 @@ jobs: name: Build Binaries runs-on: ubuntu-latest needs: [check, test, lints] - strategy: - matrix: - target: - - x86_64-unknown-linux-gnu - # - aarch64-unknown-linux-gnu - # - powerpc64-unknown-linux-gnu + # strategy: + # matrix: + # target: + # - x86_64-unknown-linux-gnu + # # - aarch64-unknown-linux-gnu + # # - powerpc64-unknown-linux-gnu steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 @@ -103,9 +103,8 @@ jobs: uses: Swatinem/rust-cache@v1.2.0 - uses: actions-rs/cargo@v1 with: - use-cross: true command: build - args: --release --target=${{ matrix.target }} + args: --release --target=x86_64-unknown-linux-gnu build-docker: name: Build Docker Image