We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 517bee4 commit e7154f1Copy full SHA for e7154f1
2 files changed
.github/workflows/autotools.yml
.github/workflows/cmake.yml .github/workflows/ci.yml.github/workflows/cmake.yml renamed to .github/workflows/ci.yml
@@ -19,3 +19,23 @@ jobs:
19
20
- name: Build
21
run: cmake --build ${{github.workspace}}/build --config ${{ matrix.build_type }}
22
+
23
+ autotools-build:
24
+ name: Autotools ${{ matrix.os }} ${{ matrix.build_type }}
25
+ runs-on: ${{ matrix.os }}
26
+ strategy:
27
+ fail-fast: false
28
+ matrix:
29
+ os: ["ubuntu-latest"]
30
+ build_type: ["", " install-strip"]
31
+ steps:
32
+ - uses: actions/checkout@v2
33
34
+ - name: Autoreconf
35
+ run: |
36
+ autoreconf --install "${{github.workspace}}"
37
+ - name: Make
38
39
+ ./configure --prefix=${{github.workspace}}/build
40
+ make${{ matrix.build_type }}
41
+ make install
0 commit comments