CVE-2025-2588: return _REG_ENOSYS if no specific error was set yet pa… #73
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: Build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - gh_actions | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-20.04 | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Install deps | |
| run: sudo apt-get update && sudo apt-get -y install libxml2-dev libreadline-dev valgrind libtool-bin | |
| - name: Autogen | |
| run: ./autogen.sh | |
| - name: ENOENT | |
| run: sed -i '41s/ENOENT/ENOENT || errno == EINVAL/' gnulib/tests/test-readlink.h | |
| - name: Configure | |
| run: ./configure | |
| - name: Make | |
| run: make | |
| - name: Make check | |
| run: make check VERBOSE=1 | |
| - name: Valgrind | |
| run: ./src/try valgrind |