From 5b0bd26f575b51ab9962b728b23fe24d15e34b51 Mon Sep 17 00:00:00 2001 From: 9pfs <9pfs@amcforum.wiki> Date: Wed, 24 Apr 2024 04:41:24 +0000 Subject: [PATCH] Attempt to add CI things + remove config.h from git --- .forgejo/workflows/build.yaml | 14 ++++++++++++++ .gitignore | 4 ++++ config.h | 33 --------------------------------- 3 files changed, 18 insertions(+), 33 deletions(-) create mode 100644 .forgejo/workflows/build.yaml delete mode 100644 config.h diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml new file mode 100644 index 0000000..e99f918 --- /dev/null +++ b/.forgejo/workflows/build.yaml @@ -0,0 +1,14 @@ +on: [push] +jobs: + build: + runs-on: docker + container: + image: node:20-bookworm + steps: + - uses: actions/checkout@v3 + - run: apt-get install -y build-essential autoconf automake libcurl4-openssl-dev + - run: ./bootstrap + - run: ./configure + - run: make + - run: make install + - run: make distcheck diff --git a/.gitignore b/.gitignore index 089d9f0..d6c1c86 100644 --- a/.gitignore +++ b/.gitignore @@ -112,7 +112,11 @@ Makefile # backups of configure scripts and configure.ac configure.ac~ configure~ +config.h.in~ # binaries nest-sanity notify-test + +# config.h +config.h diff --git a/config.h b/config.h deleted file mode 100644 index 49709c4..0000000 --- a/config.h +++ /dev/null @@ -1,33 +0,0 @@ -/* config.h. Generated from config.h.in by configure. */ -/* config.h.in. Generated from configure.ac by autoheader. */ - -/* Define to 1 if your system has a GNU libc compatible `malloc' function, and - to 0 otherwise. */ -#define HAVE_MALLOC 1 - -/* Name of package */ -#define PACKAGE "nest-sanity-checks" - -/* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "https://git.h.hackclub.app/9pfs/nest-sanity-checks/issues" - -/* Define to the full name of this package. */ -#define PACKAGE_NAME "nest-sanity-checks" - -/* Define to the full name and version of this package. */ -#define PACKAGE_STRING "nest-sanity-checks 0.0.1-dev" - -/* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "nest-sanity-checks" - -/* Define to the home page for this package. */ -#define PACKAGE_URL "" - -/* Define to the version of this package. */ -#define PACKAGE_VERSION "0.0.1-dev" - -/* Version number of package */ -#define VERSION "0.0.1-dev" - -/* Define to rpl_malloc if the replacement function should be used. */ -/* #undef malloc */