github/workflows/mbedtls: fix indent & remove unnecessary line breaks

Closes #8399
This commit is contained in:
Sebastian Sterk 2022-02-07 21:39:58 +01:00 committed by Daniel Stenberg
parent 47fc8a4be6
commit 436398bef5
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
3 changed files with 16 additions and 19 deletions

View File

@ -32,11 +32,10 @@ jobs:
name: install prereqs
- run: |
git clone --depth=1 -b v3.1.0 https://github.com/ARMmbed/mbedtls
cd mbedtls
make
make DESTDIR=$HOME/mbed install
git clone --depth=1 -b v3.1.0 https://github.com/ARMmbed/mbedtls
cd mbedtls
make
make DESTDIR=$HOME/mbed install
name: 'install mbedtls'
- uses: actions/checkout@v2

View File

@ -29,13 +29,12 @@ jobs:
name: install prereqs
- run: |
git clone --depth=1 --recursive https://github.com/rustls/rustls-ffi.git -b v0.8.2
curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
cd rustls-ffi
make
make DESTDIR=$HOME/rustls install
git clone --depth=1 --recursive https://github.com/rustls/rustls-ffi.git -b v0.8.2
curl https://sh.rustup.rs -sSf | sh -s -- -y
source $HOME/.cargo/env
cd rustls-ffi
make
make DESTDIR=$HOME/rustls install
name: 'install rustls'
- uses: actions/checkout@v2

View File

@ -36,13 +36,12 @@ jobs:
name: install prereqs and impacket
- run: |
curl -LO https://github.com/wolfSSL/wolfssl/archive/v5.0.0-stable.tar.gz
tar -xzf v5.0.0-stable.tar.gz
cd wolfssl-5.0.0-stable
./autogen.sh
./configure --enable-tls13 ${{ matrix.build.wolfssl-configure }} --enable-harden --prefix=$HOME/wssl
make && make install
curl -LO https://github.com/wolfSSL/wolfssl/archive/v5.0.0-stable.tar.gz
tar -xzf v5.0.0-stable.tar.gz
cd wolfssl-5.0.0-stable
./autogen.sh
./configure --enable-tls13 ${{ matrix.build.wolfssl-configure }} --enable-harden --prefix=$HOME/wssl
make && make install
name: 'install wolfssl'
- uses: actions/checkout@v2