Skip to content

Commit

Permalink
Use more up to date image
Browse files Browse the repository at this point in the history
  • Loading branch information
knro committed Jan 11, 2025
1 parent afab347 commit a9c4caf
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
arch: [x86_64, aarch64]

steps:
- uses: actions/checkout@v3
Expand All @@ -39,11 +40,13 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*"
CIBW_ARCHS_LINUX: "x86_64 aarch64"
CIBW_ARCHS_LINUX: "${{ matrix.arch }}"
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux_2_28_x86_64:latest
CIBW_MANYLINUX_AARCH64_IMAGE: quay.io/pypa/manylinux_2_28_aarch64:latest
CIBW_BEFORE_ALL_LINUX: |
set -e
yum install -y epel-release || { echo "Failed to add EPEL"; exit 1; }
yum install -y \
dnf install -y epel-release
dnf install -y \
git \
cmake \
gcc-c++ \
Expand All @@ -69,6 +72,7 @@ jobs:
libcurl-devel \
libtheora-devel \
swig || { echo "Failed to install dependencies"; exit 1; }
# Build INDI from source
curl -L https://github.com/indilib/indi/archive/v2.1.1.tar.gz | tar xz
cd indi-2.1.1
Expand Down

0 comments on commit a9c4caf

Please sign in to comment.