/[LeafOK_CVS]/lbbs/.github/workflows/makefile.yml
ViewVC logotype

Diff of /lbbs/.github/workflows/makefile.yml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.4 by sysadm, Sat Oct 18 12:06:10 2025 UTC Revision 1.11 by sysadm, Wed Jan 28 14:39:57 2026 UTC
# Line 2  name: Makefile CI Line 2  name: Makefile CI
2    
3  on:  on:
4    push:    push:
5      branches: [ "main" ]      branches:
6          - "main"
7          - "v*.*"
8    pull_request:    pull_request:
9      branches: [ "main" ]      branches:
10          - "main"
11    
12    concurrency:
13      group: ${{ github.workflow }}-${{ github.ref }}
14      cancel-in-progress: true
15    
16  jobs:  jobs:
17    build:    build:
# Line 15  jobs: Line 22  jobs:
22      - uses: actions/checkout@v4      - uses: actions/checkout@v4
23    
24      - name: autogen      - name: autogen
25        run: sh autogen.sh        run: autoreconf --install --force
26    
27      - name: Install dependencies      - name: Install dependencies
28        run: |        run: |
29          sudo apt-get update          sudo apt-get update
30          sudo apt-get install -y libssh-dev libsystemd-dev          sudo apt-get install -y libssh-dev libsystemd-dev
31                        
     - name: Display GCC version  
       run: gcc -v  
   
32      - name: configure      - name: configure
33        run: ./configure        run: ./configure
34    
35      - name: Run make      - name: Run make
36        run: make V=1        run: make
37    
38      - name: Run check      - name: Run check
39        run: make check        run: make check


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1