We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42fd49b commit 1d25b34Copy full SHA for 1d25b34
.github/workflows/c-cpp.yml
@@ -0,0 +1,28 @@
1
+name: C/C++ CI
2
+
3
+on:
4
+ push:
5
+ branches: [ "master" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - name: install deps
17
+ run: sudo apt-get update && sudo apt-get install libsdl1.2-dev libsdl-gfx1.2-dev autoconf automake libgl1-mesa-dev libglu1-mesa-dev
18
+ - name: autogen
19
+ run: cd glict && ./autogen.sh
20
+ - name: configure
21
+ run: cd glict && ./configure
22
+ - name: make
23
+ run: cd glict && make
24
+ - name: make check
25
+ run: cd glict && make check
26
+ # TODO: enable distcheck once unbroken (currently breaks on an attempt to #include using <system/style.h> includes).
27
+ #- name: make distcheck
28
+ # run: cd glict && make distcheck
0 commit comments