mirror of https://github.com/c-ares/c-ares.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
# Copyright (C) The c-ares project and its contributors |
|
# SPDX-License-Identifier: MIT |
|
name: OpenBSD |
|
on: |
|
push: |
|
pull_request: |
|
|
|
concurrency: |
|
group: ${{ github.ref }}-openbsd |
|
cancel-in-progress: true |
|
|
|
jobs: |
|
test: |
|
runs-on: ubuntu-latest |
|
name: OpenBSD |
|
steps: |
|
- uses: actions/checkout@v4 |
|
- name: Test |
|
uses: cross-platform-actions/action@v0.24.0 |
|
env: |
|
DIST: OPENBSD |
|
BUILD_TYPE: "cmake" |
|
CMAKE_FLAGS: "-DCMAKE_BUILD_TYPE=DEBUG -DCARES_STATIC=ON -DCARES_STATIC_PIC=ON -G Ninja" |
|
CMAKE_TEST_FLAGS: "-DCARES_BUILD_TESTS=ON" |
|
TEST_DEBUGGER: "lldb" |
|
with: |
|
operating_system: openbsd |
|
version: '7.5' |
|
shell: 'bash' |
|
environment_variables: DIST BUILD_TYPE CMAKE_FLAGS CMAKE_TEST_FLAGS TEST_DEBUGGER |
|
run: | |
|
sudo pkg_add bash cmake gtest pkgconf ninja gdb lldb |
|
sudo ln -sf /usr/local/bin/bash /bin/bash |
|
echo "BUILD_TYPE: $BUILD_TYPE" |
|
echo "CMAKE_FLAGS: $CMAKE_FLAGS" |
|
echo "CMAKE_TEST_FLAGS: $CMAKE_TEST_FLAGS" |
|
./ci/build.sh |
|
./ci/test.sh |
|
|
|
|