Mercurial > dropbear
changeset 1868:66a3fabe4870
merge
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 01 Feb 2022 15:51:01 +0800 |
parents | adfcdfb161a4 (current diff) 7a6c64c4f0ac (diff) |
children | d7247462fa0d |
files | |
diffstat | 1 files changed, 25 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.github/workflows/autoconf.yml Tue Feb 01 15:51:01 2022 +0800 @@ -0,0 +1,25 @@ +# Checks that autoconf has been run if configure.ac was updated +# Assumes that autoconf 2.69 was run, the same as ubuntu 20.04 +name: Autoconf Up To Date +on: + pull_request: + push: + branches: + - master +jobs: + autoconf: + runs-on: 'ubuntu-20.04' + + steps: + - name: deps + run: | + sudo apt-get -y update + sudo apt-get -y install autoconf + + - uses: actions/checkout@v2 + + - name: run autoconf + run: autoconf && autoheader + + - name: check no difference + run: git diff --exit-code