Fix assertion failure when setting the interpreter of a debug-only executable #967
Workflow file for this run
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: | |
pull_request: | |
push: | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: shellcheck tests/*.sh | |
nix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
- run: nix-build -A hydraJobs.release | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: get toolchain version | |
run: | | |
c++ --version | |
ld --version | |
autoconf --version | |
- run: | | |
./bootstrap.sh | |
mkdir build && cd build | |
../configure --with-asan --with-ubsan | |
make -j$(nproc) check |