+test gnu.org/autoconf (#107)

This commit is contained in:
Max Howell 2022-08-31 18:02:46 -04:00 committed by GitHub
parent a32cd0e80a
commit a5ac760ff4
3 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,4 @@
AC_INIT([hello], [1.0])
AC_CONFIG_SRCDIR([hello.c])
AC_PROG_CC
AC_OUTPUT

View file

@ -0,0 +1,3 @@
int foo(void) {
return 42;
}

View file

@ -28,4 +28,11 @@ build:
--prefix="{{ prefix }}"
make --jobs {{ hw.concurrency }} install
test: true #FIXME
test:
dependencies:
tea.xyz/gx/cc: c99
script: |
autoconf
./configure
test -f config.status
test -f config.log