Skip to content

Commit

Permalink
Change base image
Browse files Browse the repository at this point in the history
  • Loading branch information
dudoslav committed Sep 10, 2024
1 parent 0ce195b commit 6f7196b
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,17 @@ jobs:
with:
arch: none
distro: none
base_image: quay.io/pypa/manylinux2014_aarch64
base_image: quay.io/pypa/manylinux_2_28_aarch64
env: |
VCPKG_FORCE_SYSTEM_BINARIES=1
setup: |
mkdir -p "${PWD}/artifacts"
dockerRunArgs: |
-v ${PWD}/artifacts:/artifacts
install: |
yum install -y redhat-lsb-core centos-release-scl devtoolset-7 perl-IPC-Cmd
echo "source /opt/rh/devtoolset-7/enable" >> ~/.bashrc
yum install -y ninja-build curl zip unzip tar perl-IPC-Cmd
run: |
make --version \
&& cmake -S . -B build \
-G "Unix Makefiles" \
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=Release \
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_INSTALL_PREFIX=./dist \
Expand All @@ -72,7 +71,7 @@ jobs:
-DTILEDB_SERIALIZATION=ON \
-DTILEDB_WEBP=ON \
-DTILEDB_TESTS=OFF \
-DVCPKG_TARGET_TRIPLET=arm64-linux-release || find . -name *.log | xargs cat \
-DVCPKG_TARGET_TRIPLET=arm64-linux-release \
&& cmake --build build --config Release --target package \
&& cp build/tiledb-*.tar.gz* /artifacts
- run: ls -al ${PWD}/artifacts
Expand Down

0 comments on commit 6f7196b

Please sign in to comment.