Skip to content

get pd from git

get pd from git #7

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: get-pdlibbuilder
run: git submodule init && git submodule update
- name: get-pd
run: |
git clone https://github.com/pure-data/pure-data.git
cd pure-data
./autogen.sh
./configure --disable-portaudio --disable-alsa
make
make install
- name: configure
run: ./config.sh
- name: make
run: make