Skip to content

Commit

Permalink
change libjxl to release
Browse files Browse the repository at this point in the history
  • Loading branch information
Isotr0py committed Sep 30, 2023
1 parent c5f79fd commit 359d555
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,18 @@ jobs:
# sudo apt --fix-broken install
# sudo apt update
# sudo apt install -y cmake clang doxygen g++ extra-cmake-modules libgif-dev libjpeg-dev ninja-build libgoogle-perftools-dev libunwind-dev

- name: Yum Install dependencys
run: |
yum install -y cmake clang doxygen gcc-c++ extra-cmake-modules ninja-build giflib-devel libjpeg-devel
# libbrotli-dev nasm pkg-config ninja-build
# - name: Yum Install dependencys
# run: |
# yum install -y cmake clang doxygen gcc-c++ extra-cmake-modules ninja-build giflib-devel libjpeg-devel

- name: Build and install libjxl
run: |
git clone https://github.com/libjxl/libjxl.git --recursive --shallow-submodules
git clone --recurse-submodules --depth 1 -b v0.8.2 https://github.com/libjxl/libjxl.git
cd libjxl
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF ..
cmake --build . -- -j$(nproc)
sudo cmake --install .
cmake -B build -G Ninja .
cmake --build build
cmake --install build
- name: Build wheels
uses: PyO3/maturin-action@v1
Expand Down

0 comments on commit 359d555

Please sign in to comment.