update ci file

remove ppc target again
This commit is contained in:
Rohan Sircar 2021-04-23 16:21:26 +05:30
parent 133b48d9d6
commit e3ed49664c

View File

@ -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: