Skip to content

Commit

Permalink
get pd and upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
fdch committed Jun 12, 2023
1 parent 4f1dd92 commit 82a338c
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,21 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: get-pdlibbuilder
- name: get pdlibbuilder
run: git submodule init && git submodule update
- name: get-pd
- 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
run: make PDINCLUDEDIR=./pure-data/src
- name: install lib
run: |
make install PDLIBDIR=.
zip -r fd_lib.zip ./fd_lib
- name: upload artifacts
uses: actions/upload-artifact@v3
with:
name: make release
path: ./fd_lib.zip

0 comments on commit 82a338c

Please sign in to comment.