--- lbbs/.github/workflows/makefile.yml 2025/07/05 01:21:17 1.1 +++ lbbs/.github/workflows/makefile.yml 2026/01/18 09:14:35 1.9 @@ -2,9 +2,9 @@ name: Makefile CI on: push: - branches: [ "main" ] + branches: [ "v1.7" ] pull_request: - branches: [ "main" ] + branches: [ "v1.7" ] jobs: build: @@ -15,12 +15,17 @@ 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: configure run: ./configure - - name: Install dependencies + - name: Run make run: make - name: Run check