File: make.yml

package info (click to toggle)
eggdrop 1.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,596 kB
  • sloc: ansic: 65,863; javascript: 8,908; sh: 5,337; tcl: 3,801; makefile: 1,771; python: 121
file content (42 lines) | stat: -rw-r--r-- 1,238 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Eggdrop Compile

on:
  pull_request:
    branches: [ develop ]
  push:
    branches: [ develop ]

jobs:
  default-build:
    name: Compile Test
    strategy:
      matrix:
        cc: [ 'gcc', 'clang' ]
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: install dependencies
      run: sudo apt-get update && sudo apt-get install clang tcl tcl-dev openssl libssl-dev
    - uses: ammaraskar/gcc-problem-matcher@master
      if: ${{ matrix.cc == 'gcc' }}
    - name: Build
      env:
        CC: ${{ matrix.cc }}
      run: ./configure && make config && make -j4 && make install
  feature-test:
    name: Features
    continue-on-error: true
    needs: default-build
    strategy:
      matrix:
        conf_tls: [ '', '--disable-tls' ]
        conf_ipv6: [ '', '--disable-ipv6' ]
        conf_tdns: [ '', '--disable-tdns' ]
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: install dependencies
      run: sudo apt-get update && sudo apt-get install tcl tcl-dev openssl libssl-dev
    - uses: ammaraskar/gcc-problem-matcher@master
    - name: Build
      run: ./configure ${{ matrix.conf_tls }} ${{ matrix.conf_ipv6 }} ${{ matrix.conf_tdns }} && make config && make -j4