
this is necessary in order to get Furnace to build using CMake 4.0. you should do: git submodule deinit extern/portaudio
21 lines
294 B
YAML
21 lines
294 B
YAML
name: autotools build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build-autotools:
|
|
|
|
runs-on: ubuntu-latest
|
|
name: Ubuntu
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: configure
|
|
run: ./configure
|
|
- name: make
|
|
run: make
|