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.
97 lines
3.0 KiB
97 lines
3.0 KiB
4 months ago
|
# Copyright (C) The c-ares project and its contributors
|
||
|
# SPDX-License-Identifier: MIT
|
||
4 months ago
|
name: Alpine (latest)
|
||
4 months ago
|
on:
|
||
|
push:
|
||
|
pull_request:
|
||
|
|
||
|
concurrency:
|
||
4 months ago
|
group: ${{ github.ref }}-alpine-latest
|
||
4 months ago
|
cancel-in-progress: true
|
||
|
|
||
|
env:
|
||
|
TEST_FILTER: "--gtest_filter=-*LiveSearchTXT*:*LiveSearchANY*"
|
||
|
CMAKE_FLAGS: "-DCMAKE_BUILD_TYPE=DEBUG -DCARES_STATIC=ON -DCARES_STATIC_PIC=ON -G Ninja"
|
||
|
MAKE: make
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
4 months ago
|
container:
|
||
|
image: alpine:latest
|
||
|
# Needed for TCP FastOpen
|
||
|
options: --privileged
|
||
|
name: "Alpine (latest)"
|
||
4 months ago
|
steps:
|
||
|
- name: Install packages
|
||
4 months ago
|
run: |
|
||
|
apk add bash cmake samurai gtest-dev autoconf autoconf-archive automake libtool pkgconf make clang17 clang17-analyzer compiler-rt lldb gcc g++ valgrind gdb sudo
|
||
4 months ago
|
- name: Checkout c-ares
|
||
|
uses: actions/checkout@v4
|
||
4 months ago
|
- name: "Make sure TCP FastOpen is enabled"
|
||
|
run: |
|
||
|
sudo sysctl -w net.ipv4.tcp_fastopen=3
|
||
4 months ago
|
- name: "CMake: build and test c-ares"
|
||
|
env:
|
||
|
BUILD_TYPE: CMAKE
|
||
|
CMAKE_TEST_FLAGS: "-DCARES_BUILD_TESTS=ON"
|
||
|
TEST_DEBUGGER: gdb
|
||
|
run: |
|
||
|
./ci/build.sh
|
||
|
./ci/test.sh
|
||
|
- name: "Autotools: build and test c-ares"
|
||
|
env:
|
||
|
BUILD_TYPE: autotools
|
||
|
TEST_DEBUGGER: gdb
|
||
|
run: |
|
||
|
./ci/build.sh
|
||
|
./ci/test.sh
|
||
|
- name: "CMake: UBSAN: build and test c-ares"
|
||
|
env:
|
||
|
BUILD_TYPE: "ubsan"
|
||
|
CC: "clang"
|
||
4 months ago
|
CXX: "clang++"
|
||
4 months ago
|
CMAKE_TEST_FLAGS: "-DCARES_BUILD_TESTS=ON"
|
||
|
CFLAGS: "-fsanitize=undefined -fno-sanitize-recover"
|
||
|
CXXFLAGS: "-fsanitize=undefined -fno-sanitize-recover"
|
||
|
LDFLAGS: "-fsanitize=undefined"
|
||
|
TEST_DEBUGGER: "none"
|
||
|
run: |
|
||
|
./ci/build.sh
|
||
|
./ci/test.sh
|
||
|
- name: "CMake: ASAN: build and test c-ares"
|
||
|
env:
|
||
|
BUILD_TYPE: "asan"
|
||
|
CC: "clang"
|
||
4 months ago
|
CXX: "clang++"
|
||
4 months ago
|
CMAKE_TEST_FLAGS: "-DCARES_BUILD_TESTS=ON"
|
||
|
CFLAGS: "-fsanitize=address"
|
||
|
CXXFLAGS: "-fsanitize=address"
|
||
|
LDFLAGS: "-fsanitize=address"
|
||
|
TEST_DEBUGGER: "none"
|
||
|
run: |
|
||
|
./ci/build.sh
|
||
|
./ci/test.sh
|
||
4 months ago
|
- name: "CMake: Static Analyzer: build c-ares"
|
||
|
env:
|
||
|
BUILD_TYPE: "analyze"
|
||
|
CC: "clang"
|
||
4 months ago
|
CXX: "clang++"
|
||
4 months ago
|
SCAN_WRAP: "scan-build -v --status-bugs"
|
||
|
CMAKE_TEST_FLAGS: "-DCARES_BUILD_TESTS=OFF"
|
||
|
TEST_DEBUGGER: "lldb"
|
||
|
run: |
|
||
|
./ci/build.sh
|
||
|
./ci/test.sh
|
||
|
- name: "Valgrind: build and test c-ares (no TCP FastOpen)"
|
||
4 months ago
|
env:
|
||
|
BUILD_TYPE: "valgrind"
|
||
|
TEST_WRAP: "valgrind --leak-check=full"
|
||
|
TEST_FILTER: "--gtest_filter=-*Container*:*LiveSearchANY*:*LiveSearchTXT*"
|
||
|
CMAKE_TEST_FLAGS: "-DCARES_BUILD_TESTS=ON"
|
||
|
TEST_DEBUGGER: none
|
||
|
run: |
|
||
4 months ago
|
sudo sysctl -w net.ipv4.tcp_fastopen=0
|
||
4 months ago
|
./ci/build.sh
|
||
|
./ci/test.sh
|