Fixed payload_sock not being cleared #39
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
--- | |
name: Slow BSD test job | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
release: | |
types: | |
- published | |
- created | |
- edited | |
workflow_dispatch: | |
jobs: | |
test_bsd: | |
name: Test BSD | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: | |
- name: freebsd | |
architecture: x86-64 | |
version: '13.2' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Fix Checkout | |
run: | | |
git fetch --force --tags | |
- name: Test on ${{ matrix.os.name }} | |
uses: cross-platform-actions/[email protected] | |
with: | |
operating_system: ${{ matrix.os.name }} | |
architecture: ${{ matrix.os.architecture }} | |
version: ${{ matrix.os.version }} | |
shell: bash | |
memory: 5G | |
cpu_count: 4 | |
run: | | |
sudo pkg install -y \ | |
autoconf \ | |
automake \ | |
git-tiny \ | |
gmake \ | |
python3 \ | |
jq \ | |
bash | |
./autogen.sh | |
./configure CC=clang | |
gmake all | |
test_openbsd: | |
name: Test OpenBSD | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: | |
- name: openbsd | |
architecture: x86-64 | |
version: '7.3' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Fix Checkout | |
run: | | |
git fetch --force --tags | |
- name: Test on ${{ matrix.os.name }} | |
uses: cross-platform-actions/[email protected] | |
with: | |
operating_system: ${{ matrix.os.name }} | |
architecture: ${{ matrix.os.architecture }} | |
version: ${{ matrix.os.version }} | |
shell: bash | |
memory: 5G | |
cpu_count: 4 | |
run: | | |
sudo pkg_add \ | |
autoconf-2.71 \ | |
automake-1.16.5 \ | |
git \ | |
gmake \ | |
python3 \ | |
jq \ | |
bash | |
AUTOCONF_VERSION=2.71 AUTOMAKE_VERSION=1.16 ./autogen.sh | |
./configure CC=clang | |
gmake all |