Skip to content

Build libcows.so arm64 #37

Build libcows.so arm64

Build libcows.so arm64 #37

name: Build libchdb.so arm64
on:
workflow_dispatch:
inputs:
TAG_NAME:
description: 'Release Version Tag'
required: true
TAG_BUILDER:
description: 'Self-Hosted Builder Tag (ARM64, RPI4)'
required: false
release:
types: [created]
jobs:
build_libchdb_linux:
name: ${{ matrix.os }}
runs-on: ${{ github.event.inputs.TAG_BUILDER || 'ARM64' }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04 ]
platform: [ arm64 ]
python-version: [ 3.10 ]
env:
RUNNER_OS: ${{ matrix.os }}
steps:
- name: Install clang++ for Ubuntu
if: matrix.os == 'ubuntu-20.04'
run: |
pwd
uname -a
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 15
which clang++-15
clang++-15 --version
sudo ln -sf /usr/bin/clang-15 /usr/bin/clang
sudo ln -sf /usr/bin/clang++-15 /usr/bin/clang++
sudo apt-get install -y make cmake ccache ninja-build yasm gawk wget python3 python3-pip python3-dev file
ccache -s
- name: Update git
run: |
sudo add-apt-repository ppa:git-core/ppa -y
sudo apt-get update
sudo apt-get install -y git
git --version
- name: Check out chdb
uses: actions/checkout@master
with:
repository: chdb-io/chdb
- name: Restore submodules cache
uses: actions/cache/restore@v3
id: cache
with:
path: |
contrib/**
key: |
submodule-${{ hashFiles('.gitmodules') }}
- name: Update submodules if cache miss
if: steps.cache.outputs.cache-hit != 'true'
run: |
git submodule update --init --recursive --jobs 4
- name: Save submodules cache
if: steps.cache.outputs.cache-hit != 'true'
uses: actions/cache/save@v3
with:
path: |
contrib/**
key: |
submodule-${{ hashFiles('.gitmodules') }}
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ matrix.os }}
max-size: 5G
append-timestamp: true
- name: Patch
if: matrix.os == 'ubuntu-20.04'
run: |
sudo sed -i "s/\${PYINIT_ENTRY}//g" ./chdb/build.sh
sudo sed -i "s/\# strip/strip/g" ./chdb/build.sh
sudo sed -i "s/CHDB_PY_MODULE.*/CHDB_PY_MODULE=libchdb.so/g" ./chdb/vars.sh
sudo sed -i "s|<aarch64-linux-gnu|</usr/include/aarch64-linux-gnu|g" /usr/include/python3.*/pyconfig.h
sudo sed -i "s|-DENABLE_EMBEDDED_COMPILER=0|-DENABLE_EMBEDDED_COMPILER=0 -DNO_ARMV81_OR_HIGHER=1|g" ./chdb/build.sh
- name: Run chdb/build.sh
run: |
python3 -m pip install pybind11
export CC=/usr/bin/clang
export CXX=/usr/bin/clang++
bash ./chdb/build.sh
ls -alFh ./chdb/libchdb.so
continue-on-error: false
- name: Check ccache statistics
run: |
ccache -s
ls -lh chdb
df -h
- name: Strip & Compress Library
run: |
sudo strip ./chdb/libchdb.so
cd chdb && sudo zip -r ./libchdb_${{ matrix.platform }}.zip ./libchdb.so
- uses: actions/upload-artifact@v3
with:
name: libchdb
path: ./chdb/libchdb_${{ matrix.platform }}.zip
retention-days: 1
publish_libchdb_linux:
needs: build_libchdb_linux
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ ubuntu-20.04 ]
platform: [ arm64 ]
env:
RUNNER_OS: ${{ matrix.os }}
steps:
- name: Checkout Packaging repository
uses: actions/checkout@v3
- uses: actions/download-artifact@master
with:
name: libchdb
- name: Unzip Library
run: |
ls -alFh
sudo unzip ./libchdb_${{ matrix.platform }}.zip
ls -alFh
- name: Patch Version
run: |
sudo sed -i "s/0.0.0/${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}/g" libchdb.yml
sudo sed -i "s/amd64/${{ matrix.platform }}/g" libchdb.yml
cat libchdb.yml
## - name: Create deb package
# id: nfpm-deb
# uses: burningalchemist/nfpm-action@v1
# env:
# VERSION: ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}
# with:
# packager: deb
# config: libchdb.yml
# target: libchdb_${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}_${{ matrix.platform }}.deb
## - name: Create rpm package
# id: nfpm-rpm
# uses: burningalchemist/nfpm-action@v1
# env:
# VERSION: ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}
# with:
# packager: rpm
# config: libchdb.yml
# target: libchdb_${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}.${{ matrix.platform }}.rpm
- name: Upload release
if: github.event_name != 'pull_request'
uses: boxpositron/upload-multiple-releases@1.0.7
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
release_config: |
libchdb_${{ matrix.platform }}.zip
# libchdb_${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}.${{ matrix.platform }}.rpm
# libchdb_${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}_${{ matrix.platform }}.deb
tag_name: ${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}
release_name: libchdb_v${{ github.event.inputs.TAG_NAME || github.event.release.tag_name }}
draft: false
prerelease: false
overwrite: true
## Experimental Restart on Failures (WIP)
restart_failed:
name: Retry Expired Build
runs-on: ubuntu-latest
if: github.event_name == 'release' && cancelled()
needs: [ build_libchdb_linux ]
steps:
- name: Retry Expired Build
run: |
curl -i \
-X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: token ${{ secrets.PAT_TOKEN }}" \
https://api.github.com/repos/metrico/libchdb/actions/runs/${{ github.run_id }}/rerun -d '{"ref": "${{ github.ref }}" }'