Skip to content

Commit

Permalink
Prepare for 0.16.0 arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani committed Nov 9, 2023
1 parent a7586fd commit 4500abd
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/build_lib_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
TAG_BUILDER:
description: 'Self-Hosted Builder Tag (ARM64, RPI4)'
required: false
REMOTE_BRANCH:
description: 'chdb remote branch (main)'
required: false

release:
types: [created]

Expand All @@ -32,11 +36,11 @@ jobs:
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 ./llvm.sh 17
which clang++-17
clang++-17 --version
sudo ln -sf /usr/bin/clang-17 /usr/bin/clang
sudo ln -sf /usr/bin/clang++-17 /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
Expand All @@ -49,7 +53,7 @@ jobs:
uses: actions/checkout@v4.0.0
with:
repository: chdb-io/chdb
ref: 'main'
ref: ${{ github.event.inputs.REMOTE_BRANCH || 'main' }}
- name: Restore submodules cache
uses: actions/cache/restore@v3
id: cache
Expand Down

0 comments on commit 4500abd

Please sign in to comment.