Do not treat AltGr as the Alt modifier when converting keyDown events #84
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: Build | |
on: [push, pull_request] | |
jobs: | |
build-linux-gcc: | |
name: Linux (GCC 8) | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Install Dependencies | |
run: sudo apt -y install libncursesw5-dev g++-8 libvterm-dev libasio-dev | |
- name: Configure CMake | |
shell: bash | |
env: | |
CC: gcc-8 | |
CXX: g++-8 | |
run: cmake . -DCMAKE_BUILD_TYPE=Debug -DTVTERM_OPTIMIZE_BUILD=OFF -DCMAKE_CXX_FLAGS="-std=c++14" | |
- name: Build | |
shell: bash | |
run: cmake --build . -j$(nproc) | |