Skip to content

Commit e267fa0

Browse files
committed
Compile nasm ourselves in CI.
1 parent 91baf9c commit e267fa0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,14 @@ jobs:
119119
- name: Setup libraries
120120
run: |
121121
sudo apt update
122-
sudo apt install libtomcrypt-dev libtommath-dev libssl-dev libcrypto++-dev libgcrypt20-dev nettle-dev libbotan-2-dev libwolfssl-dev nasm
122+
sudo apt install libtomcrypt-dev libtommath-dev libssl-dev libcrypto++-dev libgcrypt20-dev nettle-dev libbotan-2-dev libwolfssl-dev
123+
wget https://www.nasm.us/pub/nasm/releasebuilds/2.16.03/nasm-2.16.03.tar.gz
124+
tar -xzvf nasm-2.16.03.tar.gz
125+
cd nasm-2.16.03
126+
./configure
127+
make -j4
128+
sudo make install
129+
cd ..
123130
echo "BORINGSSL_VERSION=$(git submodule status ext/boringssl | cut -f2 -d' ' | cut -c1-10)" >> $GITHUB_ENV
124131
echo "LIBRESSL_VERSION=$(git submodule status ext/libressl | cut -f2 -d' ' | cut -c1-10)" >> $GITHUB_ENV
125132
echo "IPPCP_VERSION=$(git submodule status ext/ipp-crypto | cut -f2 -d' ' | cut -c1-10)" >> $GITHUB_ENV

0 commit comments

Comments
 (0)