chore: Fix archlinux dev docker container build (#266) #635
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
# 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: test-c | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'CMakeLists.txt' | |
- '.github/workflows/build-and-test.yaml' | |
- 'src/nanoarrow/**' | |
jobs: | |
test-c: | |
runs-on: ubuntu-latest | |
name: ${{ matrix.config.label }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- {label: default-build, cmake_args: "-DCMAKE_BUILD_TYPE=Debug"} | |
- {label: release-build} | |
- {label: namespaced-build, cmake_args: "-DNANOARROW_NAMESPACE=SomeUserNamespace"} | |
- {label: bundled-build, cmake_args: "-DNANOARROW_BUNDLE=ON"} | |
- {label: bundled-cpp-build, cmake_args: "-DNANOARROW_BUNDLE=ON -DNANOARROW_BUNDLE_AS_CPP=ON"} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt install -y -V ca-certificates lsb-release wget cmake valgrind | |
wget https://apache.jfrog.io/artifactory/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb | |
sudo apt-get install -y -V ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb | |
sudo apt-get update | |
sudo apt-get install -y -V libarrow-dev | |
rm apache-arrow-apt-*.deb | |
- name: Build nanoarrow | |
run: | | |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/dist/lib | |
sudo ldconfig | |
mkdir build | |
cd build | |
cmake .. -DNANOARROW_BUILD_TESTS=ON ${{ matrix.config.cmake_args }} | |
cmake --build . | |
- name: Check for non-namespaced symbols in namespaced build | |
if: matrix.config.label == 'namespaced-build' | |
run: | | |
# Dump all symbols | |
nm --extern-only build/libnanoarrow.a | |
# Check for non-namespaced ones | |
ARROW_SYMBOLS=`nm --extern-only build/libnanoarrow.a | grep "T Arrow" || true` | |
if [ -z "$ARROW_SYMBOLS" ]; then | |
exit 0 | |
fi | |
echo "Found the following non-namespaced extern symbols:" | |
echo $ARROW_SYMBOLS | |
exit 1 | |
- name: Run tests | |
run: | | |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/dist/lib | |
sudo ldconfig | |
cd build | |
ctest -T test --output-on-failure . | |
- name: Run tests with valgrind | |
if: matrix.config.label == 'default-build' | |
run: | | |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/dist/lib | |
sudo ldconfig | |
cd build | |
ctest -T memcheck . | |
- name: Upload memcheck results | |
if: failure() && matrix.config.label == 'default-build' | |
uses: actions/upload-artifact@main | |
with: | |
name: nanoarrow-memcheck | |
path: build/Testing/Temporary/MemoryChecker.*.log |