Skip to content

maint: Init arrays with { 0 }; cleanup check_pathname_state() #995

maint: Init arrays with { 0 }; cleanup check_pathname_state()

maint: Init arrays with { 0 }; cleanup check_pathname_state() #995

Workflow file for this run

name: C/C++ CI
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
on:
push:
branches: master
paths:
- '**'
- '!**.yml'
- '!**/.github'
- '!**.md'
- '!docker/**'
- '!packaging/**'
- '!**.txt'
- '**/c-cpp.yml'
pull_request:
branches: master
paths:
- '**'
- '!**.yml'
- '!**/.github'
- '!**.md'
- '!docker/**'
- '!packaging/**'
- '!**.txt'
- '**/c-cpp.yml'
env:
TERM: xterm
jobs:
build:
name: ${{ matrix.name }}-${{ matrix.os }}-${{ matrix.cc }}
strategy:
fail-fast: false
matrix:
name: [default]
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04]
cc: [gcc, clang]
include:
- name: Slackware
os: ubuntu-latest
container: 'andy5995/slackware-build-essential:15.0'
- name: Alpine
os: ubuntu-latest
container: andy5995/rmw:build-env-alpine
setup_options: -Db_sanitize=none
- name: OpenSuse-Tumbleweed
os: ubuntu-latest
container: andy5995/rmw:build-env-tumbleweed
runs-on: ${{ matrix.os }}
needs:
- various
container: ${{ matrix.container }}
steps:
- uses: actions/checkout@v4
with:
submodules: false
- name: Set CC
run: |
CC=${{ matrix.cc }}
if [ "$CC" = "gcc" ] || [ -z "$CC" ]; then
CC=gcc
CXX=g++
else
CC=clang
CXX=clang++
fi
echo "CC=$CC" >> $GITHUB_ENV
echo "CXX=$CXX" >> $GITHUB_ENV
- name: Show info
run: |
export -p
echo '${{ toJSON(matrix) }}'
- if: ${{ matrix.container == null }}
run: |
sudo apt update
sudo apt remove -y firefox
sudo apt upgrade -y
sudo apt-get install -y \
gettext \
python3-pip \
python3-setuptools
sudo -H python3 -m pip install meson ninja
- if: ${{ contains(matrix.container, 'alpine') }}
run: |
apk update
apk upgrade
- if: ${{ contains(matrix.container, 'tumbleweed') }}
run: |
zypper --non-interactive refresh
zypper --non-interactive update
- name: Configure
run: meson setup builddir $SETUP_OPTIONS ${{ matrix.setup_options }}
- name: Build
run: |
cd builddir
ninja -v
- name: Test
run: cd builddir && meson test -v
openbsd:
runs-on: ubuntu-latest
needs:
- build
name: OpenBSD
steps:
- uses: actions/checkout@v4
- name: Test in OpenBSD
id: test
uses: vmactions/openbsd-vm@v1
with:
usesh: true
prepare: |
pkg_add gettext git meson ninja
run: |
meson setup builddir -Db_sanitize=none $SETUP_OPTIONS || cat builddir/meson-logs/meson-log.txt
cd builddir
meson compile -v
meson test -v --suite rmw
macos:
name: macos-${{ matrix.name }}
strategy:
fail-fast: false
matrix:
include:
- name: brew-canfigger
install_packages: canfigger
setup_options: --wrap-mode nofallback
- name: bundled-canfigger
runs-on: macos-latest
needs:
- build
steps:
- uses: actions/checkout@v4
- name: Show info
run: |
export -p
echo '${{ toJSON(matrix) }}'
- run: |
brew update
brew install \
gettext \
meson \
ninja \
ncurses \
pkg-config \
${{ matrix.build.install_packages }}
- name: Configure
run: meson setup builddir ${{ matrix.build.setup_options }}
- name: Build
run: |
cd builddir
ninja -v
- name: Test
run: cd builddir && meson test -v
various:
name: Test Various Build Configurations
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache btrfs Image
uses: actions/cache@v4
id: btrfs-img-cache
with:
path: test/rmw-btrfs-test.img
key: ${{ hashFiles('test/rmw-btrfs-test.img.sha256sum') }}
- if: ${{ steps.btrfs-img-cache.outputs.cache-hit != 'true' }}
run: curl -L -o test/rmw-btrfs-test.img 'https://www.dropbox.com/scl/fi/57g3ixd3w3tuz4qoc2zp1/rmw-btrfs-test.img?rlkey=yc7krtntswsa1bwz0sbugy4gi&st=hkgrht05&dl=0'
- name: Test btrfs image existence
run: test -f test/rmw-btrfs-test.img
- name: Install Dependencies
run: |
sudo apt update
sudo apt remove -y firefox
sudo apt upgrade -y
sudo apt-get install -y \
faketime \
gettext \
meson \
ninja-build \
xvfb
- name: Configure with nls
run: meson setup builddir
- name: Build
run: meson compile -C builddir
- name: meson dist
run: cd builddir && meson dist --include-subprojects
- name: meson dist without gettext installed
run: |
sudo apt remove -y gettext
cd builddir
meson setup --wipe -Dnls=false
meson dist --include-subprojects
- name: Without curses or nls
run: |
cd builddir
meson configure -Dwithout-curses=true -Dnls=false
meson test -v
- name: Epochalypse test
run: |
rm -rf builddir
meson setup builddir -Db_sanitize=none
cd builddir
meson test -v --setup=epochalypse --suite=rmw
- name: with lto and FORTIFY
run: |
cd builddir
meson setup --wipe \
-Db_sanitize=none \
-Dc_args=-D_FORTIFY_SOURCE=3 \
-Dbuildtype=debugoptimized \
-Db_lto=true
meson test -v