Skip to content

Don't Error when sendto() errors with ENETUNREACH or EHOSTUNREACH #13

Don't Error when sendto() errors with ENETUNREACH or EHOSTUNREACH

Don't Error when sendto() errors with ENETUNREACH or EHOSTUNREACH #13

Workflow file for this run

name: FEED Core
on: [push, pull_request, workflow_dispatch]
env:
SETUP_PATH: .ci-local
jobs:
native:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
env:
CMP: ${{ matrix.cmp }}
BCFG: ${{ matrix.configuration }}
BASE: ${{ matrix.base }}
CI_CROSS_TARGETS: ${{ matrix.cross }}
TEST: ${{ matrix.test }}
EXTRA: ${{ matrix.extra }}
VV: "1"
strategy:
fail-fast: false
matrix:
include:
- name: Native Linux (WError)
os: ubuntu-latest
cmp: gcc
configuration: default
base: "7.0"
extra: "CMD_CPPFLAGS=-Werror"
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: "apt-get install"
run: |
sudo apt-get update
sudo apt-get -y install gdb
if: runner.os == 'Linux'
- name: Automatic core dumper analysis
uses: mdavidsaver/ci-core-dumper@master
- name: Prepare and compile dependencies
run: python .ci/cue.py prepare
- name: Build main module
run: python .ci/cue.py build
- name: Run main module tests
run: python -m ci_core_dumper exec python .ci/cue.py -T 5M test
- name: Collect and show test results
if: ${{ always() }}
run: python .ci/cue.py test-results
- name: Upload tapfiles Artifact
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: tapfiles ${{ matrix.name }}
path: '**/O.*/*.tap'