File: build.yaml

package info (click to toggle)
qstat 2.17-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,220 kB
  • sloc: ansic: 24,706; makefile: 86; perl: 78; sh: 62
file content (47 lines) | stat: -rw-r--r-- 1,043 bytes parent folder | download | duplicates (2)
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
43
44
45
46
47
name: Build CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build_linux:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: autogen
        run: ./autogen.sh
      - name: autoreconf force
        run: autoreconf --force
      - name: configure
        run: ./configure
      - name: make check
        run: make check
      - name: make distcheck
        run: make distcheck

  build_macos:
    runs-on: macos-latest
    steps:
      - uses: actions/checkout@v2
      - name: install automake
        run: brew install automake
      - name: autogen
        run: ./autogen.sh
      - name: autoreconf force
        run: autoreconf --force
      - name: configure
        run: ./configure
      - name: make check
        run: make check

  build_windows:
    runs-on:    windows-latest
    steps:
      - uses: actions/checkout@v2
      - uses: ilammy/msvc-dev-cmd@v1
      - name: nmake debug build
        run: |
          nmake -f Makefile.noauto windows_debug