FIXED: user streams lose FD_CLOEXEC when restore_ctty() reconnects them #2026
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install build dependencies | |
| run: >- | |
| sudo apt-get update && sudo apt-get install -y build-essential cmake ninja-build pkg-config | |
| ncurses-dev | |
| libgoogle-perftools-dev | |
| libgmp-dev | |
| libssl-dev | |
| unixodbc-dev | |
| zlib1g-dev libarchive-dev | |
| libossp-uuid-dev | |
| libdb-dev | |
| libpcre2-dev | |
| libyaml-dev | |
| libutf8proc-dev | |
| default-jdk junit4 | |
| - name: Configure project | |
| run: cmake -B build -G Ninja | |
| - name: Build project | |
| run: cmake --build build | |
| - name: Run tests | |
| run: cmake --build build --target test | |
| env: | |
| CTEST_PARALLEL_LEVEL: 4 | |
| CTEST_OUTPUT_ON_FAILURE: y |