--- lbbs/.github/workflows/makefile.yml 2025/11/17 03:55:49 1.6 +++ lbbs/.github/workflows/makefile.yml 2026/01/24 15:26:22 1.10 @@ -2,9 +2,13 @@ name: Makefile CI on: push: - branches: [ "main" ] + branches: [ "v1.7" ] pull_request: - branches: [ "main" ] + branches: [ "v1.7" ] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true jobs: build: @@ -15,18 +19,15 @@ jobs: - uses: actions/checkout@v4 - name: autogen - run: sh autogen.sh + run: autoreconf --install --force - name: Install dependencies run: | sudo apt-get update sudo apt-get install -y libssh-dev libsystemd-dev - - name: Display GCC version - run: gcc -v - - name: configure - run: ./configure --enable-systemd --disable-silent-rules + run: ./configure - name: Run make run: make