From 7b468966e0f3ef4e4a11c11223f6419994ec91b1 Mon Sep 17 00:00:00 2001 From: Scott Miller <73297684+ScottThomasMiller@users.noreply.github.com> Date: Sat, 20 Apr 2024 18:51:46 -0400 Subject: [PATCH] re-added build commands --- .github/workflows/run_unix.yml | 47 +++++++++++++++++++++++++++++----- 1 file changed, 40 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run_unix.yml b/.github/workflows/run_unix.yml index b0a36cd85..b2fff8ffe 100644 --- a/.github/workflows/run_unix.yml +++ b/.github/workflows/run_unix.yml @@ -58,13 +58,46 @@ jobs: run: | cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme band_power - echo install: - ls -l install || true - echo LC_LOAD_DYLIB: - otool -l install/band_power | grep LC_LOAD_DYLIB -A2 || true - echo LC_RPATH: - otool -l install/band_power | grep LC_RPATH -A2 || true - + - name: build band_power_all Swift + run: | + cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI + xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme band_power_all + - name: build brainflow_get_data Swift + run: | + cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI + xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme brainflow_get_data + - name: build denoising Swift + run: | + cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI + xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme denoising + - name: build downsampling Swift + run: | + cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI + xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme downsampling + - name: build eeg_metrics Swift + run: | + cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI + xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme eeg_metrics + - name: build ica Swift + run: | + cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI + xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme ica + - name: build markers Swift + run: | + cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI + xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme markers + - name: build read_write_file Swift + run: | + cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI + xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme read_write_file + - name: build signal_filtering Swift + run: | + cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI + xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme signal_filtering + - name: build transforms Swift + run: | + cd $GITHUB_WORKSPACE/swift_package/BrainFlowCI + xcodebuild install -project BrainFlowCI.xcodeproj -destination 'platform=macOS,arch=x86_64' DSTROOT=. INSTALL_PATH=install -scheme transforms # start testing - name: Run unit tests run: $GITHUB_WORKSPACE/build/tests/brainflow_tests