Skip to content

Fix function inline errors in debug optimization (-Og) #206

Fix function inline errors in debug optimization (-Og)

Fix function inline errors in debug optimization (-Og) #206

Workflow file for this run

# Copyright 2020-2022 Rainer Gerhards and Others
#
# https://github.com/rsyslog/rsyslog-pkg-ubuntu
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# References:
#
# https://help.github.com/en/github/managing-subscriptions-and-notifications-on-github/configuring-notifications#github-actions-notification-options
# https://github.com/settings/notifications
# https://software.opensuse.org//download.html?project=home%3Argerhards&package=rsyslog
---
name: distcheck
on:
pull_request:
jobs:
check_run:
runs-on: ubuntu-22.04
timeout-minutes: 50
steps:
- name: prepare
run: |
sudo apt-get install -y libgnutls28-dev
- name: git checkout project
uses: actions/checkout@v1
- name: autoreconf
run: autoreconf -fvi
- name: configure
run: ./configure
- name: distcheck
run: |
make distcheck
- name: show error logs (if we errored)
if: ${{ failure() || cancelled() }}
run: |
devtools/gather-check-logs.sh
cat failed-tests.log