-
Notifications
You must be signed in to change notification settings - Fork 824
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RISCV64][CI] Use simpler way to install riscv64 packages (#4002)
* [RISCV64][CI] Use simpler way to install riscv64 packages * [RISCV64][CI] Still need debian-port * [RISCV64][CI] try unstable debian-port * [RISCV64][CI] restrict pgp keys * [RISCV64][CI] better restrict pgp keys * [RISCV64][CI] Use testing * [RISCV64][CI] Switch to custom build openssl * [RISCV64][CI] Fixed typos
- Loading branch information
Showing
3 changed files
with
45 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
set -x | ||
set -euo pipefail | ||
|
||
apt-get install wget | ||
|
||
wget https://www.openssl.org/source/openssl-3.1.1.tar.gz | ||
|
||
tar xf openssl-3.1.1.tar.gz | ||
rm openssl-3.1.1.tar.gz | ||
cd openssl-3.1.1 | ||
|
||
AR=riscv64-linux-gnu-ar NM=riscv64-linux-gnu-nm CC=riscv64-linux-gnu-gcc \ | ||
./Configure -static no-asm no-tests --prefix=/openssl_riscv64 linux64-riscv64 | ||
|
||
make -j | ||
make install |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters