Fix io_close crash in addreason #495
This file contains 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: chillerbot | |
on: | |
push: | |
branches-ignore: | |
- staging.tmp | |
- trying.tmp | |
- staging-squash-merge.tmp | |
pull_request: | |
jobs: | |
curses-build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
include: | |
- os: ubuntu-latest | |
cmake-args: -G Ninja | |
package-file: "*-linux_x86_64.tar.xz" | |
fancy: true | |
env: | |
CFLAGS: -Wdeclaration-after-statement -Werror | |
CXXFLAGS: -Werror | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Prepare Linux | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install pkg-config cmake ninja-build libfreetype6-dev libnotify-dev libsdl2-dev libsqlite3-dev libvulkan-dev glslang-tools spirv-tools libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev libx264-dev -y | |
sudo apt-get install libncursesw5-dev -y | |
- name: Build in debug mode | |
env: ${{ matrix.env }} | |
run: | | |
mkdir debug | |
cd debug | |
${{ matrix.cmake-path }}cmake --version | |
${{ matrix.cmake-path }}cmake ${{ matrix.cmake-args }} \ | |
-DCMAKE_BUILD_TYPE=Debug -Werror=dev -DDOWNLOAD_GTEST=ON -DDEV=ON -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG=. \ | |
-DHEADLESS_CLIENT=ON -DCURSES_CLIENT=ON .. | |
${{ matrix.cmake-path }}cmake --build . --config Debug --target everything ${{ matrix.build-args }} | |
- name: Test debug | |
env: ${{ matrix.env }} | |
run: | | |
cd debug | |
${{ matrix.cmake-path }}cmake --build . --config Debug --target run_tests ${{ matrix.build-args }} | |
- name: Run debug curses client | |
env: ${{ matrix.env }} | |
run: | | |
cd debug | |
TERM=linux ./term-ux "cl_download_skins 0;quit" |