Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions .github/workflows/darkice-gui.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build darkice-gui CI

on:
workflow_dispatch:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- run: sudo apt-get update && sudo apt-get install libgtk-3-dev
- name: autogen
run: ./autogen.sh
working-directory: ./darkice-gui
- name: configure
run: ./configure
working-directory: ./darkice-gui
- name: make
run: make -j
working-directory: ./darkice-gui
31 changes: 31 additions & 0 deletions .github/workflows/darkice.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build darkice CI

on:
workflow_dispatch:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: autogen
run: ./autogen.sh
working-directory: ./darkice
- name: configure
run: ./configure
working-directory: ./darkice
- name: make
run: make -j
working-directory: ./darkice
- name: make check
run: make check
working-directory: ./darkice
- name: make distcheck
run: make distcheck
working-directory: ./darkice
2 changes: 1 addition & 1 deletion darkice-gui/autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ DIE=0
DIE=1
}

(libtool --help) < /dev/null > /dev/null 2>&1 || {
(libtoolize --help) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have libtool installed to compile $package."
echo "Download the appropriate package for your system,"
Expand Down