-
Notifications
You must be signed in to change notification settings - Fork 38
130 lines (109 loc) · 3.64 KB
/
examples.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: examples
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- 'examples/**'
- 'CMakeLists.txt'
- '.github/workflows/examples.yaml'
- 'src/nanoarrow/**'
- 'src/extensions/**'
jobs:
examples:
runs-on: ubuntu-latest
env:
VERBOSE: 1
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
sudo apt-get install -y cmake
- name: Minimal CMake Example
run: |
cd examples/cmake-minimal
mkdir build && cd build
cmake ..
cmake --build .
./example_cmake_minimal_app
- name: Minimal Vendored Example
run: |
cd examples/vendored-minimal
python3 ../../ci/scripts/bundle.py --source-output-dir=src --include-output-dir=src
cd src
gcc -c library.c nanoarrow.c
ar rcs libexample_vendored_minimal_library.a library.o nanoarrow.o
gcc -o example_vendored_minimal_app app.c libexample_vendored_minimal_library.a
./example_vendored_minimal_app
- name: Ipc CMake Example
run: |
cd examples/cmake-ipc
mkdir build && cd build
cmake ..
cmake --build .
cat ../schema-valid.arrows | ./example_cmake_ipc_app
- name: Ipc Vendored Example
run: |
cd examples/vendored-ipc
python3 ../../ci/scripts/bundle.py \
--source-output-dir=src \
--include-output-dir=src \
--symbol-namespace=MyProject \
--with-ipc \
--with-flatcc
cd src
gcc -c library.c nanoarrow.c flatcc.c nanoarrow_ipc.c -I.
ar rcs libexample_vendored_ipc_library.a library.o nanoarrow.o nanoarrow_ipc.o flatcc.o
gcc -o example_vendored_ipc_app app.c libexample_vendored_ipc_library.a
cat ../schema-valid.arrows | ./example_vendored_ipc_app
- name: Getting Started Tutorial Example
run: |
cd examples/linesplitter
mkdir build && cd build
cmake ..
cmake --build .
ctest .
- name: Comprehensive CMake example
run: |
cd examples/cmake-scenarios
./build.sh
for dir in scratch/build*; do
./${dir}/minimal_cpp_app;
echo ;
done
- name: Meson example
run: |
python3 -m pip install meson ninja
cd examples/meson-minimal
meson setup builddir
meson compile -C builddir
./builddir/example_meson_minimal_app
- name: Python example
run: |
python3 -m pip install examples/python-package
python3 -c "import schema_printer"