aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/autotools.yml
blob: bb66d5b002f36a01caf0b2074df12edf6703dd9f (plain)
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
48
49
50
51
name: Autotools

on: [push, pull_request]

jobs:

 AutoMakeBuild:
    name: AutoMake/${{ matrix.config.name }}
    runs-on: ${{ matrix.config.os }}
    strategy:
      fail-fast: false
      matrix:
        config:
        - {
            name: "Linux/GCC",
            os: ubuntu-latest,
            compiler: gcc,
            automakeconfig:
          }
        - {
            name: "Linux/GCC/EnableAssertions",
            os: ubuntu-latest,
            compiler: gcc,
            buildconfig: --enable-assertions
          }
        - {
            name: "Linux/GCC/EnableCustomModes",
            os: ubuntu-latest,
            compiler: gcc,
            buildconfig: --enable-assertions --enable-custom-modes
          }
        - {
            name: "Linux/GCC/EnableDNN",
            os: ubuntu-latest,
            compiler: gcc,
            buildconfig: --enable-assertions --enable-custom-modes --enable-dred --enable-osce
          }
    steps:
      - uses: actions/checkout@v3
        # No AutoMake on Mac so let's install it
      - name: Install AutoConf, AutoMake and LibTool on MacOSX
        if: matrix.config.os == 'macos-latest'
        run: brew install autoconf automake libtool
      - name: Autogen
        run: CC=${{ matrix.config.compiler }} ./autogen.sh
      - name: Configure
        run: CFLAGS="-mavx -mfma -mavx2 -O2 -ffast-math" ./configure --enable-float-approx ${{ matrix.config.buildconfig }}
      - name: Build
        run: make -j 2
      - name: Test
        run: make check -j 2