diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2020-09-13 12:47:51 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2020-09-13 14:00:31 +0200 |
commit | 1b6e5b491ae717eb096a7d4a68df9f772de577ae (patch) | |
tree | 832f5e22ec4a402989b63cea3b5cf51698b540a8 /.github/workflows | |
parent | 33ba6ccff34c76d5156b9b9cff18463eb8e269c8 (diff) | |
download | lulua-1b6e5b491ae717eb096a7d4a68df9f772de577ae.tar.gz lulua-1b6e5b491ae717eb096a7d4a68df9f772de577ae.tar.bz2 lulua-1b6e5b491ae717eb096a7d4a68df9f772de577ae.zip |
winkbd: Make Windows driver compileable with MingGW
Automate the process via GitHub Actions as well. kbd.h can be
simplified.
Fixes #11.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8886753..eb34f05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - sudo apt install ninja-build libxml2-dev libxslt1-dev + sudo apt install ninja-build libxml2-dev libxslt1-dev mingw-w64 pip install . pip install flake8 pytest pytest-cov - name: Lint with flake8 @@ -37,7 +37,7 @@ jobs: # Due to the lack of corpora, we can’t run the entire thing here. run: | ./gen.sh > build.ninja - ninja _build/report/ar-lulua.svg _build/report/ar-lulua.xmodmap + ninja _build/report/ar-lulua.svg _build/report/ar-lulua.xmodmap _build/report/ar-lulua-w64.zip - name: Upload results uses: actions/upload-artifact@v2 with: |