Skip to content

Commit

Permalink
fix pd path
Browse files Browse the repository at this point in the history
  • Loading branch information
fdch committed Jun 18, 2023
1 parent 87d727f commit 45e3acd
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
runs-on: ubuntu-latest
env:
OUTPUT: fd_lib-${{ github.job }}
PDPATH: ./pure-data
steps:
- uses: actions/checkout@v3
- name: get pdlibbuilder
Expand All @@ -18,11 +17,11 @@ jobs:
uses: actions/checkout@v2
with:
repository: pure-data/pure-data
path: $PDPATH
path: pure-data
- name: configure
run: ./config.sh
- name: make
run: make PDINCLUDEDIR=$PDPATH/src
run: make PDINCLUDEDIR=pure-data/src
- name: install lib
run: |
make install PDLIBDIR=.
Expand All @@ -38,7 +37,6 @@ jobs:
runs-on: macos-latest
env:
OUTPUT: fd_lib-${{ github.job }}
PDPATH: ./pure-data
steps:
- uses: actions/checkout@v3
- name: get pdlibbuilder
Expand All @@ -47,11 +45,11 @@ jobs:
uses: actions/checkout@v2
with:
repository: pure-data/pure-data
path: $PDPATH
path: pure-data
- name: configure
run: ./config.sh
- name: make
run: make PDINCLUDEDIR=$PDPATH/src
run: make PDINCLUDEDIR=pure-data/src
- name: install lib
run: |
make install PDLIBDIR=.
Expand All @@ -67,19 +65,18 @@ jobs:
runs-on: windows-latest
env:
OUTPUT: fd_lib-${{ github.job }}
PDPATH: ./pure-data
steps:
- uses: actions/checkout@v3
- name: get pdlibbuilder
run: git submodule init && git submodule update
- name: get pd
run: |
curl -O http://msp.ucsd.edu/Software/pd-0.53-2.msw.zip
unzip -d $PDPATH pd-0.53-2.msw.zip
unzip -d pure-data pd-0.53-2.msw.zip
- name: configure
run: ./config.sh
- name: make
run : make pdbinpath=$PDPATH/bin PDINCLUDEDIR=$PDPATH/src CFLAGS=-march=x86-64 -Iinclude
run : make pdbinpath=pure-data/bin PDINCLUDEDIR=pure-data/src CFLAGS=-march=x86-64 -Iinclude
- name: install lib
run: |
make install PDLIBDIR=.
Expand Down

0 comments on commit 45e3acd

Please sign in to comment.