From 269a076107640560bdb340301df94becf2941b94 Mon Sep 17 00:00:00 2001 From: rocky Date: Sat, 22 Jan 2022 10:17:01 -0500 Subject: [PATCH] Try Workflows CI (ubuntu) --- .github/workflows/ubuntu.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/ubuntu.yml diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml new file mode 100644 index 000000000..e836b8fbd --- /dev/null +++ b/.github/workflows/ubuntu.yml @@ -0,0 +1,32 @@ +name: remake 4.3 (ubuntu) + +on: + push: + branches: [ remake-4-3 ] + pull_request: + branches: [ remake-4-3 ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Install dependencies + run: | + sudo apt-get update -qq && sudo apt-get install -qq gcc pkg-config autoconf automake autopoint gettext libreadline-dev make guile-2.2 lzip texinfo + - name: Generate configure POSIX script + run: autoreconf -i + - name: Configure for GNU Make + run: ./configure --enable-maintainer-mode + - name: Pull localization files + run: make po-update + - name: Set up to rebuild doc + run: (cd doc && make stamp-1 stamp-vti) + - name: Run GNU make to build + run: make + - name: Test "remake" just built + run: make check + - name: Check distribution building + run: make distcheck