]> skyeroc.xyz Git - dgamelaunch/commitdiff
Create build test on push to github dev/master origin/dev
authorSkye Kelley <21977895+skyebeek@users.noreply.github.com>
Sun, 21 Jun 2026 17:19:04 +0000 (13:19 -0400)
committerSkyebee <sb24kelley@gmail.com>
Sun, 21 Jun 2026 17:52:11 +0000 (13:52 -0400)
* Create c-cpp.yml
* Revert configure.ac req to 2.71

.github/workflows/c-cpp.yml [new file with mode: 0644]
configure.ac

diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml
new file mode 100644 (file)
index 0000000..bff8c7a
--- /dev/null
@@ -0,0 +1,19 @@
+name: C/C++ CI
+
+on:
+  push:
+    branches: [ "master", "dev" ]
+  pull_request:
+    branches: [ "master", "dev" ]
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v7
+    - name: configure
+      run: ./autogen.sh --prefix=/srv/dgamelaunch-dev --enable-debugfile --enable-sqlite --enable-shmem --with-sqlite-db=/var/dgl/dgamelaunch.db --with-config-file=/srv/dgamelaunch-dv/etc/dgl/dgamelaunch.conf
+    - name: make
+      run: make
index ef5f06c6f91557c7c0c1acae3bc94c9f041fb105..bd939bad6b199cce9a1148b091ee6e327ded15b9 100644 (file)
@@ -1,9 +1,9 @@
-dnl Use autoconf 2.72
+dnl Use autoconf 2.71
 dnl (Things tend to break across versions, they're neither upwards nor
 dnl downward compatible. Blame GNU.)
 
 AC_INIT([dgamelaunch],[m4_translit(m4_esyscmd([git describe --abbrev=4 --dirty --tags --always || echo 1.6.1-roc]),m4_newline)])
-AC_PREREQ([2.72])
+AC_PREREQ([2.71])
 
 AC_CONFIG_HEADERS([config.h])