Skip to content

Commit

Permalink
ci: install mpdecimal for ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
akirakw committed Sep 5, 2024
1 parent 423d868 commit 91f5e5b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,21 @@ jobs:
with:
sharksfin-implementation: shirakami

- name: Install_mpdecimal
if: matrix.os == 'ubuntu-24.04'
run: |
mkdir build-mpdecimal
cd build-mpdecimal
curl -OL https://www.bytereef.org/software/mpdecimal/releases/mpdecimal-2.5.1.tar.gz
tar xf mpdecimal-2.5.1.tar.gz
cd mpdecimal-2.5.1
./configure --prefix="${GITHUB_WORKSPACE}/.local"
make -j8
make install
cd ../..
rm -fr build-mpdecimal;
shell: bash

- name: CMake_Install
run: |
rm -rf build
Expand Down

0 comments on commit 91f5e5b

Please sign in to comment.