-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0965358
commit aa6b4ed
Showing
1 changed file
with
52 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,7 +88,7 @@ jobs: | |
cd build | ||
cmake -DAVRO_ROOT=${{ runner.temp }}/avro-cpp-1.11.3-install -DAVRO_USE_STATIC_LIBS=TRUE ${{ github.workspace }} | ||
cmake --build . --config Release -j2 | ||
ubuntu-20-java8: | ||
ubuntu-20-java11: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -119,7 +119,8 @@ jobs: | |
cd build | ||
cmake -DAVRO_ROOT=${{ runner.temp }}/avro-cpp-1.11.3-install -DAVRO_USE_STATIC_LIBS=TRUE -DWITH_JAVA_WRAPPING=TRUE ${{ github.workspace }} | ||
cmake --build . --config Release -j2 | ||
ubuntu-20-java8-with-fesapi: | ||
ubuntu-20-java11-with-fesapi: | ||
if: false | ||
runs-on: ubuntu-20.04 | ||
strategy: | ||
fail-fast: false # 'false' means Don't stop matrix workflows even if some matrix failed. | ||
|
@@ -174,3 +175,52 @@ jobs: | |
cd build | ||
cmake -DAVRO_ROOT=${{ runner.temp }}/avro-cpp-1.11.3-install -DAVRO_USE_STATIC_LIBS=TRUE -DWITH_FESAPI=TRUE -DFESAPI_ROOT=${{ runner.temp }}/fesapi-install -DFESAPI_JAR=${{ runner.temp }}/fesapi-install/lib/fesapiJava-2.9.0.1.jar -DWITH_JAVA_WRAPPING=TRUE ${{ github.workspace }} -DCMAKE_C_COMPILER=${{ matrix.cc }} -DCMAKE_CXX_COMPILER=${{ matrix.cxx }} | ||
cmake --build . --config Release -j2 | ||
build_wheels: | ||
name: Build wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Stub `setup.py` check | ||
# It will be generated during CMake run | ||
# https://github.com/pypa/cibuildwheel/issues/1139 | ||
run: touch python/setup.py | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: cp38-manylinux_* cp39-manylinux_* cp310-manylinux_* cp311-manylinux_* cp312-manylinux_* cp313-manylinux_* | ||
CIBW_ARCHS: auto64 | ||
CIBW_BEFORE_ALL: > | ||
yum install -y wget gcc-c++ boost-devel && | ||
yum search epel-release && | ||
yum info epel-release && | ||
yum install -y epel-release && | ||
yum --enablerepo=epel install -y cmake3 && | ||
cd / && | ||
wget https://archive.apache.org/dist/avro/avro-1.11.3/cpp/avro-cpp-1.11.3.tar.gz && | ||
tar xf avro-cpp-1.11.3.tar.gz && | ||
sed -i 's/install (TARGETS avrocpp avrocpp_s/install (TARGETS avrocpp_s/' avro-cpp-1.11.3/CMakeLists.txt && | ||
sed -i 's/install (TARGETS avrogencpp RUNTIME DESTINATION bin)//' avro-cpp-1.11.3/CMakeLists.txt && | ||
mkdir avro-build && | ||
cd avro-build && | ||
cmake3 -Wno-dev -Wno-deprecated -DCMAKE_POSITION_INDEPENDENT_CODE=ON -DCMAKE_INSTALL_PREFIX=/avro-install /avro-cpp-1.11.3 | ||
cmake3 --build . -j2 --target avrocpp_s --config Release | ||
cmake3 --install . && | ||
cd / && | ||
mkdir build && | ||
cd build && | ||
cmake3 -DCMAKE_BUILD_TYPE=Release -DAVRO_ROOT=/avro-install -DAVRO_USE_STATIC_LIBS=TRUE -DWITH_PYTHON_WRAPPING=TRUE -DCMAKE_INSTALL_PREFIX:STRING=/fetpapi-install {project} && | ||
cmake3 --build . -j2 --config Release && | ||
cmake3 --install . | ||
CIBW_REPAIR_WHEEL_COMMAND_LINUX: > | ||
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/fesapi-install/lib64 && | ||
auditwheel repair -w {dest_dir} {wheel} | ||
with: | ||
package-dir: ./python | ||
output-dir: wheelhouse | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | ||
path: ./wheelhouse/*.whl |