From 38849734b211896fda91d3bc5b857739180ce69e Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Tue, 31 May 2022 12:36:22 +1000 Subject: [PATCH] Remove steps to install libssl in job `build` Signed-off-by: Jiahao XU --- .github/workflows/rust.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 165be219..f4d85ef2 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -54,20 +54,6 @@ jobs: toolchain: nightly target: ${{ matrix.target }} override: true - - - name: Install openssl (apt armv7) - if: ${{ matrix.target == 'armv7-unknown-linux-gnueabihf' }} - uses: ryankurte/action-apt@v0.3.0 - with: - arch: armhf - packages: libssl-dev:armhf libssl1.1:armhf zlib1g-dev:armhf zlib1g:armhf libc-dev:armhf - - - name: Install openssl (apt armv7) - if: ${{ matrix.target == 'armv7-unknown-linux-musleabihf' }} - uses: ryankurte/action-apt@v0.3.0 - with: - arch: armhf - packages: libssl-dev:armhf libssl1.1:armhf zlib1g-dev:armhf zlib1g:armhf libc-dev:armhf - name: Configure caching uses: actions/cache@v2