improve browser #45
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
push: | |
branches: [ "master", "CI", "actions"] | |
paths-ignore: ['md-help/**'] | |
pull_request: | |
branches: [ "master", "CI", "actions"] | |
paths-ignore: ['md-help/**', 'Help-files/**'] | |
jobs: | |
# =============================================================== | |
# =============================================================== | |
# =============================================================== | |
Linux-Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install PureData | |
run: sudo apt-get install puredata -y | |
- name: Downloads pd-Sources | |
run: | | |
PD_URL=$(curl -L -s https://api.github.com/repos/pure-data/pure-data/tags | grep zipball_url | grep -v latest | grep -v pd-0.54 | grep -v tagtest | head -n 1 | cut -d '"' -f 4) | |
curl -L -o pure-data.zip $PD_URL | |
unzip pure-data.zip | |
rm pure-data.zip | |
mv pure-data-* pure-data | |
- name: Build pd-cyclone | |
run: | | |
make install PDINCLUDEDIR=./pure-data/src PDLIBDIR=./pd-cyclone extension=l_amd64 | |
- name: Upload Zip | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cyclone | |
path: ./pd-cyclone/cyclone/* | |
# # # # =============================================================== | |
# # # # =============================================================== | |
# # # # =============================================================== | |
Windows-Build: | |
runs-on: windows-latest | |
timeout-minutes: 25 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- if: runner.os == 'Windows' | |
name: "Install mingw deps" | |
uses: msys2/setup-msys2@v2 | |
with: | |
install: make mingw-w64-x86_64-gcc mingw64/mingw-w64-x86_64-ntldd-git mingw-w64-x86_64-fluidsynth mingw64/mingw-w64-x86_64-cmake unzip curl | |
update: false | |
- if: runner.os == 'Windows' | |
name: Get Pd | |
shell: msys2 {0} | |
run: | | |
curl -L -o pure-data.zip http://msp.ucsd.edu/Software/pd-0.54-0.msw.zip | |
unzip pure-data.zip | |
rm pure-data.zip | |
rename pd-0.54-0 pure-data pd-0.54-0 | |
- if: runner.os == 'Windows' | |
name: Build pd-else | |
shell: msys2 {0} | |
run: | | |
make install PDDIR=./pure-data PDLIBDIR=./pd-cyclone extension=m_amd64 | |
- name: Upload Zip | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cyclone | |
path: ./pd-cyclone/cyclone/* | |
# # =============================================================== | |
# # =============================================================== | |
# # =============================================================== | |
Mac-Intel: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: set Enviroment | |
run: | | |
brew cleanup --prune=all | |
brew install --cask pd | |
- name: Build pd-cyclone | |
run: | | |
make install PDLIBDIR=./pd-cyclone extension=d_amd64 | |
- name: Upload Zip | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cyclone | |
path: ./pd-cyclone/cyclone/* | |
# =============================================================== | |
# =============================================================== | |
# =============================================================== | |
Mac-ARM: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: set Enviroment | |
run: | | |
brew cleanup --prune=all | |
brew install --cask pd | |
- name: Build pd-cyclone | |
run: | | |
make install PDLIBDIR=./pd-cyclone extension=d_arm64 | |
- name: Upload Zip | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cyclone | |
path: ./pd-cyclone/cyclone/* |