From e3ed49664c69b1b5ce434b138a90af9fd3d528db Mon Sep 17 00:00:00 2001 From: Rohan Sircar Date: Fri, 23 Apr 2021 16:21:26 +0530 Subject: [PATCH] update ci file remove ppc target again --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ddbf17..93c97b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,7 +92,7 @@ jobs: target: - x86_64-unknown-linux-gnu - aarch64-unknown-linux-gnu - - powerpc64-unknown-linux-gnu + # - powerpc64-unknown-linux-gnu steps: - uses: actions/checkout@v2 - uses: actions-rs/toolchain@v1 @@ -102,10 +102,10 @@ jobs: override: true - name: Rust Cache uses: Swatinem/rust-cache@v1.2.0 - - name: Install PowerPC GCC - if: ${{ matrix.target }} == 'powerpc64-unknown-linux-gnu' - run: | - sudo apt-get install -y gcc-powerpc-linux-gnu + # - name: Install PowerPC GCC + # if: matrix.target == 'powerpc64-unknown-linux-gnu' + # run: | + # sudo apt-get install -y gcc-powerpc-linux-gnu - name: Compile uses: actions-rs/cargo@v1 with: