Skip to content

Update dependencies #129

Update dependencies

Update dependencies #129

Workflow file for this run

name: build macos
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-demos:
runs-on: macos-latest
steps:
# Step 1: Checkout the repository
- name: Checkout repository
uses: actions/checkout@v3
# Step 2: Move to the parent directory and fetch dependencies
- name: Fetch dependencies
run: |
cd ..
git clone https://github.com/razterizer/Core.git
git clone https://github.com/razterizer/Termin8or.git
git clone https://github.com/razterizer/AudioLibSwitcher_OpenAL.git --recurse-submodules
git clone https://github.com/razterizer/TrainOfThought.git
# Step 3: Install OpenAL
- name: Install OpenAL
run: brew install openal-soft
# Step 4: Install libsndfile
- name: Install libsndfile
run: brew install libsndfile
# run: sudo apt install libsndfile1-dev
# Step 5: Change to the correct directory and build
- name: Build project
run: |
cd demos
./build_demo_1.sh
# ./build_demo_2.sh
./build_demo_3.sh
./build_demo_4.sh
./build_demo_5.sh
./build_demo_6.sh
./build_demo_7.sh
./build_demo_8.sh
./build_demo_9.sh
./build_demo_10.sh
continue-on-error: false # Ensure errors are not bypassed