Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .cirrus.yml

This file was deleted.

29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,35 @@ on:
branches:
- main
jobs:
freebsd13:
name: FreeBSD
runs-on: ubuntu-24.04
steps:
- uses: vmactions/freebsd-vm@7ca82f79fe3078fecded6d3a2bff094995447bbd
with:
sync: no
release: "15.0"
usesh: true
run: |
set -e
set -o pipefail
set -u
set -x
uname -rms
pkg install -y cmake git python3 py311-pytest vim
python3 --version
git clone --no-checkout -- ${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY} wd
cd wd
git fetch -- origin ${{ github.event.pull_request.head.sha }}
git checkout FETCH_HEAD
export CFLAGS="-Werror -g -fno-omit-frame-pointer -fsanitize=address,undefined -fno-sanitize-recover=address,undefined"
export UBSAN_OPTIONS=print_stacktrace=1
export TERM=xterm
cmake -B build -S .
cmake --build build
cmake --build build --target check
cmake --install build

linux:
name: Linux
runs-on: ubuntu-24.04
Expand Down
2 changes: 1 addition & 1 deletion libvimcat/src/read.c
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ static int run_vim(FILE **out, pid_t *pid, const char *filename, size_t rows,
STDERR_FILENO))))
goto done;
} else {
DEBUG("leading Vim’s stderr not redirected");
DEBUG("leaving Vim’s stderr not redirected");
}

// construct Vim parameter to force terminal height
Expand Down