8000 GLICT/fonts.cpp: Add docstrings to a few more functions and methods. · ivucica/glict@f71a387 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

GLICT/fonts.cpp: Add docstrings to a few more functions and methods. #13

GLICT/fonts.cpp: Add docstrings to a few more functions and methods.

GLICT/fonts.cpp: Add docstrings to a few more functions and methods. #13

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install deps
run: sudo apt-get update && sudo apt-get install libsdl1.2-dev libsdl-gfx1.2-dev autoconf automake libgl1-mesa-dev libglu1-mesa-dev
- name: autogen
run: cd glict && ./autogen.sh
- name: configure
run: cd glict && ./configure
- name: make
run: cd glict && make
- name: make check
run: cd glict && make check
# TODO: enable distcheck once unbroken (currently breaks on an attempt to #include using <system/style.h> includes).
#- name: make distcheck
# run: cd glict && make distcheck
0