We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b331eff commit 47a28e4Copy full SHA for 47a28e4
1 file changed
.github/workflows/cmake.yml .github/workflows/ci.yml.github/workflows/cmake.yml renamed to .github/workflows/ci.yml
@@ -1,6 +1,6 @@
1
on: [push, pull_request]
2
3
-name: CMake
+name: Builds
4
5
jobs:
6
cmake-build:
@@ -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", "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
41
+ make ${{ matrix.build_type }}
0 commit comments