Skip to content

Commit

Permalink
Build with autotools via GitHub Action [skip travis] [skip appveyor]
Browse files Browse the repository at this point in the history
  • Loading branch information
tbeu committed Oct 30, 2024
1 parent f284a2b commit 0c3e8b7
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/autotools.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "Autotools build"

on:
push:
pull_request:
workflow_call:
workflow_dispatch:

defaults:
run:
shell: bash

jobs:
build:
name: linux-gcc
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 5
submodules: recursive
- name: Configure Release
run: |
./autogen.sh
./configure --with-pic
- name: Build with gcc
run: make -j8
- name: Test
run: make check
1 change: 1 addition & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: "CMake build"
on:
push:
pull_request:
workflow_call:
workflow_dispatch:

defaults:
Expand Down

0 comments on commit 0c3e8b7

Please sign in to comment.