Skip to content

Defer SIGTERM/SIGINT shutdown out of the signal handler #1214

Defer SIGTERM/SIGINT shutdown out of the signal handler

Defer SIGTERM/SIGINT shutdown out of the signal handler #1214

Workflow file for this run

name: Eggdrop Compile
on:
pull_request:
branches: [develop]
push:
branches: [develop]
jobs:
default-build:
name: Compile Test
strategy:
matrix:
cc: ["gcc", "clang"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: install dependencies
run: sudo apt-get update && sudo apt-get install clang tcl tcl-dev openssl libssl-dev
- name: GCC Problem Matcher
if: ${{ matrix.cc == 'gcc' }}
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
- name: Build
env:
CC: ${{ matrix.cc }}
run: ./configure && make config && make -j4 && make install
feature-test:
name: Features
continue-on-error: true
needs: default-build
strategy:
matrix:
conf_tls: ["", "--disable-tls"]
conf_ipv6: ["", "--disable-ipv6"]
conf_tdns: ["", "--disable-tdns"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: install dependencies
run: sudo apt-get update && sudo apt-get install tcl tcl-dev openssl libssl-dev
- name: GCC Problem Matcher
run: echo "::add-matcher::.github/problem-matchers/gcc.json"
- name: Build
run: ./configure ${{ matrix.conf_tls }} ${{ matrix.conf_ipv6 }} ${{ matrix.conf_tdns }} && make config && make -j4