Skip to content

Commit

Permalink
optimize caching strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
stephtr committed Sep 19, 2024
1 parent 3c49603 commit dfc084d
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 57 deletions.
100 changes: 62 additions & 38 deletions .github/workflows/compile-libqalculate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,65 +23,89 @@ jobs:
- name: Checkout 🛎
uses: actions/checkout@v4

- name: Setup dependency cache
id: cache-dependencies
- name: Setup libqalculate cache
id: cache-libqalculate
uses: actions/cache@v2
with:
path: |
~/opt/lib
~/opt/include
key: ${{env.LIBQALCULATE_VERSION}}-gmp${{env.GMP_VERSION}}-mpfr${{env.MPFR_VERSION}}-libxml2${{env.LIBXML2_VERSION}}-em${{env.EM_VERSION}}-${{ runner.os }}
key: libqalculate-${{env.LIBQALCULATE_VERSION}}-em${{env.EM_VERSION}}-${{ runner.os }}

- name: Setup emsdk cache
# if: steps.cache-dependencies.outputs.cache-hit != 'true'
if: steps.cache-libqalculate.outputs.cache-hit != 'true'
id: cache-system-libraries
uses: actions/cache@v2
with:
path: ${{env.EM_CACHE_FOLDER}}
key: ${{env.EM_VERSION}}-${{ runner.os }}

- name: Setup libqalculate prerequisite cache
if: steps.cache-libqalculate.outputs.cache-hit != 'true'
id: cache-prerequisites
uses: actions/cache@v2
with:
path: |
~/opt-prerequisites/lib
~/opt-prerequisites/include
key: prerequisites-gmp${{env.GMP_VERSION}}-mpfr${{env.MPFR_VERSION}}-libxml2${{env.LIBXML2_VERSION}}-em${{env.EM_VERSION}}-${{ runner.os }}

- name: Setup emsdk
# if: steps.cache-dependencies.outputs.cache-hit != 'true'
if: steps.cache-libqalculate.outputs.cache-hit != 'true'
uses: mymindstorm/setup-emsdk@v14
with:
version: ${{env.EM_VERSION}}
actions-cache-folder: ${{env.EM_CACHE_FOLDER}}

- name: Setup GMP, MPFR & libxml2
if: steps.cache-dependencies.outputs.cache-hit != 'true'
if: steps.cache-libqalculate.outputs.cache-hit != 'true' && steps.cache-prerequisites.outputs.cache-hit != 'true'
run: |
sudo apt install -y build-essential lzip binutils autoconf intltool libtool automake lbzip2 lzip
mkdir -p ~/opt/src
cd ~/opt/src
wget https://ftp.gnu.org/gnu/gmp/gmp-${GMP_VERSION}.tar.lz
tar xf gmp-${GMP_VERSION}.tar.lz
cd gmp-${GMP_VERSION}
emconfigure ./configure --disable-assembly --host none --enable-cxx --prefix=${HOME}/opt # no, the "none" host is not obsolete.
make
make install
cd ..
wget https://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR_VERSION}.tar.xz
# wget https://www.mpfr.org/mpfr-current/allpatches # if available
tar xf mpfr-${MPFR_VERSION}.tar.xz
cd mpfr-${MPFR_VERSION}
emconfigure ./configure --prefix=${HOME}/opt --with-gmp=${HOME}/opt
make
make install
cd ..
wget http://xmlsoft.org/download/libxml2-${LIBXML2_VERSION}.tar.gz -O libxml2-${LIBXML2_VERSION}.tar.gz
tar xf libxml2-${LIBXML2_VERSION}.tar.gz
cd libxml2-${LIBXML2_VERSION}
emconfigure ./configure --prefix=${HOME}/opt --disable-shared --without-python
make
make install
ln -s ${HOME}/opt/include/libxml2/libxml ${HOME}/opt/include/libxml
cd ..
sudo apt install -y build-essential lzip binutils autoconf intltool libtool automake lbzip2 lzip
mkdir -p ~/opt-prerequisites/src
cd ~/opt-prerequisites/src
wget https://ftp.gnu.org/gnu/gmp/gmp-${GMP_VERSION}.tar.lz
tar xf gmp-${GMP_VERSION}.tar.lz
cd gmp-${GMP_VERSION}
emconfigure ./configure --disable-assembly --host none --enable-cxx --prefix=${HOME}/opt-prerequisites
make
make install
cd ..
wget https://ftp.gnu.org/gnu/mpfr/mpfr-${MPFR_VERSION}.tar.xz
# wget https://www.mpfr.org/mpfr-current/allpatches # if available
tar xf mpfr-${MPFR_VERSION}.tar.xz
cd mpfr-${MPFR_VERSION}
emconfigure ./configure --prefix=${HOME}/opt-prerequisites --with-gmp=${HOME}/opt-prerequisites
make
make install
cd ..
wget http://xmlsoft.org/download/libxml2-${LIBXML2_VERSION}.tar.gz -O libxml2-${LIBXML2_VERSION}.tar.gz
tar xf libxml2-${LIBXML2_VERSION}.tar.gz
cd libxml2-${LIBXML2_VERSION}
emconfigure ./configure --prefix=${HOME}/opt-prerequisites --disable-shared --without-python
make
make install
ln -s ${HOME}/opt-prerequisites/include/libxml2/libxml ${HOME}/opt-prerequisites/include/libxml
cd ..
- name: Setup libqalculate
# if: steps.cache-dependencies.outputs.cache-hit != 'true'
if: steps.cache-libqalculate.outputs.cache-hit != 'true'
run: |
chmod +x ./.github/workflows/prepare-libqalculate.sh
./.github/workflows/prepare-libqalculate.sh
sudo apt install -y build-essential lzip binutils autoconf intltool libtool automake lbzip2 lzip
mkdir -p ~/opt/src
cd ~/opt/src
wget https://github.com/Qalculate/libqalculate/archive/refs/tags/v${LIBQALCULATE_VERSION}.tar.gz -O libqalculate-${LIBQALCULATE_VERSION}.tar.gz
tar xf libqalculate-${LIBQALCULATE_VERSION}.tar.gz
cd libqalculate-${LIBQALCULATE_VERSION}
export NOCONFIGURE=1
export NO_AUTOMAKE=1
./autogen.sh
export LIBXML_LIBS="-L${HOME}/opt-prerequisites/lib -lxml2"
export LIBXML_CFLAGS="-I${HOME}/opt-prerequisites/include"
emconfigure ./configure --prefix=${HOME}/opt CPPFLAGS=-I${HOME}/opt-prerequisites/include LDFLAGS=-L${HOME}/opt-prerequisites/lib --without-libcurl --without-icu --enable-compiled-definitions --disable-nls --disable-shared
make
make install
cd ..
19 changes: 0 additions & 19 deletions .github/workflows/prepare-libqalculate.sh

This file was deleted.

0 comments on commit dfc084d

Please sign in to comment.