Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Isotr0py committed Sep 30, 2024
1 parent 41fb1c2 commit 38593cb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install Plugin
run: |
brew install jpeg-xl
export DEP_JXL_LIB=/opt/homebrew/Cellar/jpeg-xl/0.10.3/lib
export DEP_JXL_LIB=/opt/homebrew/Cellar/jpeg-xl/0.11.0/lib
export DEP_BROTLI_LIB=/opt/homebrew/Cellar/brotli/1.1.0/lib
export DEP_HWY_LIB=/opt/homebrew/Cellar/highway/1.2.0/lib
source venv/bin/activate
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
# target: [x86_64, aarch64, armv7, s390x, ppc64le]
target: [x86_64]
target: [x86_64, aarch64]
include:
- target: x86_64
docker_image: quay.io/pypa/manylinux_2_28_x86_64:latest
Expand All @@ -46,14 +46,15 @@ jobs:
target: ${{ matrix.target }}
container: ${{ matrix.docker_image }}
args: --release --out dist --find-interpreter --features dynamic
sccache: 'true'
manylinux: auto
docker-options: |
-e RUST_BACKTRACE=1
-e DEP_JXL_LIB=${{ github.workspace }}/libjxl/build/lib
-e DEP_BROTLI_LIB=${{ github.workspace }}/libjxl/build/third_party/brotli
-e DEP_HWY_LIB=${{ github.workspace }}/libjxl/build/third_party/highway
before-script-linux: |
git clone --recurse-submodules --depth 1 -b v0.10.3 \
git clone --recurse-submodules --depth 1 -b v0.11.0 \
https://github.com/libjxl/libjxl.git
cd libjxl
cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=OFF \
Expand Down Expand Up @@ -150,7 +151,7 @@ jobs:
RUST_BACKTRACE: 1
MACOSX_DEPLOYMENT_TARGET: 12.7
# from homebrew
DEP_JXL_LIB: /opt/homebrew/Cellar/jpeg-xl/0.10.3/lib
DEP_JXL_LIB: /opt/homebrew/Cellar/jpeg-xl/0.11.0/lib
DEP_BROTLI_LIB: /opt/homebrew/Cellar/brotli/1.1.0/lib
DEP_HWY_LIB: /opt/homebrew/Cellar/highway/1.2.0/lib
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install Plugin
run: |
brew install jpeg-xl
export DEP_JXL_LIB=/opt/homebrew/Cellar/jpeg-xl/0.10.3/lib
export DEP_JXL_LIB=/opt/homebrew/Cellar/jpeg-xl/0.11.0/lib
export DEP_BROTLI_LIB=/opt/homebrew/Cellar/brotli/1.1.0/lib
export DEP_HWY_LIB=/opt/homebrew/Cellar/highway/1.2.0/lib
source venv/bin/activate
Expand Down

0 comments on commit 38593cb

Please sign in to comment.