manual install?

This commit is contained in:
briaguya 2024-02-19 08:40:37 -05:00
parent 0ec0716a2c
commit 6282974bbe

View File

@ -267,6 +267,15 @@ jobs:
sudo apt-get remove -y cmake
wget https://github.com/Kitware/CMake/releases/download/v3.28.3/cmake-3.28.3-linux-x86_64.sh -O /tmp/cmake.sh
sudo sh /tmp/cmake.sh --prefix=/usr/local/ --exclude-subdir
wget https://libzip.org/download/libzip-1.10.1.tar.gz
tar -xzvf libzip-1.10.1.tar.gz
cd libzip-1.10.1
mkdir build
cd build
cmake ..
make
make test
make install
- uses: actions/checkout@v3
with:
submodules: true