Skip to content

Commit

Permalink
CI: Add Autotools builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Croydon committed Jan 31, 2022
1 parent b331eff commit 47a28e4
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/cmake.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on: [push, pull_request]

name: CMake
name: Builds

jobs:
cmake-build:
Expand All @@ -19,3 +19,23 @@ jobs:

- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{ matrix.build_type }}

autotools-build:
name: Autotools ${{ matrix.os }} ${{ matrix.build_type }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
build_type: ["install", "install-strip"]
steps:
- uses: actions/checkout@v2

- name: Autoreconf
run: |
autoreconf --install "${{github.workspace}}"
- name: Make
run: |
./configure --prefix=${{github.workspace}}/build
make
make ${{ matrix.build_type }}

0 comments on commit 47a28e4

Please sign in to comment.