File: autoconf.yml

package info (click to toggle)
dropbear 2025.89-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,580 kB
  • sloc: ansic: 108,210; sh: 4,765; perl: 774; python: 763; makefile: 715; java: 177
file content (25 lines) | stat: -rw-r--r-- 546 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Checks that autoconf has been run if configure.ac was updated
# Assumes that autoconf 2.71 was run, the same as ubuntu 22.04
name: Autoconf Up To Date
on:
  pull_request:
  push:
    branches:
      - master
jobs:
  autoconf:
    runs-on: 'ubuntu-22.04'

    steps:
      - name: deps
        run: |
          sudo apt-get -y update
          sudo apt-get -y install autoconf

      - uses: actions/checkout@v4

      - name: run autoconf
        run: autoconf && autoheader

      - name: check no difference
        run: git diff --exit-code