Skip to content

Commit 97b77bd

Browse files
committed
chore: add test for workflows
1 parent 74f5a76 commit 97b77bd

File tree

2 files changed

+93
-0
lines changed

2 files changed

+93
-0
lines changed

.github/workflows/test.yaml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Copyright 2024-present Alibaba Inc.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: Test
16+
17+
on:
18+
push:
19+
branches:
20+
- '**'
21+
tags:
22+
- '**'
23+
pull_request:
24+
25+
concurrency:
26+
group: ${{ github.repository }}-${{ github.head_ref || github.sha }}-${{ github.workflow }}
27+
cancel-in-progress: true
28+
29+
permissions:
30+
contents: read
31+
32+
env:
33+
PAIMON_HOME: /tmp/paimon
34+
35+
jobs:
36+
ubuntu:
37+
name: AMD64 Ubuntu 24.04
38+
runs-on: ubuntu-24.04
39+
timeout-minutes: 60
40+
strategy:
41+
fail-fast: false
42+
steps:
43+
- name: Checkout paimon-cpp
44+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
45+
- name: Install dependencies
46+
shell: bash
47+
run: sudo apt-get update && sudo apt-get install -y libcurl4-openssl-dev
48+
- name: Build Paimon
49+
shell: bash
50+
env:
51+
CC: gcc-14
52+
CXX: g++-14
53+
run: ci/scripts/build_paimon.sh $(pwd) ON

ci/scripts/build_paimon.sh

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Copyright 2024-present Alibaba Inc.
4+
#
5+
# Licensed under the Apache License, Version 2.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
17+
set -eux
18+
19+
source_dir=${1}
20+
build_dir=${1}/build
21+
22+
mkdir ${build_dir}
23+
pushd ${build_dir}
24+
25+
CMAKE_ARGS=(
26+
"-G Ninja"
27+
"-DCMAKE_BUILD_TYPE=Debug"
28+
"-DPAIMON_BUILD_TESTS=ON"
29+
"-DPAIMON_ENABLE_LANCE=ON"
30+
"-DPAIMON_ENABLE_JINDO=ON"
31+
"-DCMAKE_INSTALL_PREFIX=${CMAKE_INSTALL_PREFIX:-${PAIMON_HOME}}"
32+
)
33+
34+
cmake "${CMAKE_ARGS[@]}" ${source_dir}
35+
cmake --build . --target install -- -j$(nproc)
36+
ctest --output-on-failure
37+
38+
popd
39+
40+
rm -rf ${build_dir}

0 commit comments

Comments
 (0)