Skip to content

Commit

Permalink
CI: Combine Workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Croydon committed Jan 31, 2022
1 parent 517bee4 commit e7154f1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 24 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/autotools.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/cmake.yml → .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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-strip"]
steps:
- uses: actions/checkout@v2

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

0 comments on commit e7154f1

Please sign in to comment.