Skip to content

Commit

Permalink
Code updates, debugging, and external lib references.
Browse files Browse the repository at this point in the history
  • Loading branch information
htartisan committed Dec 27, 2024
1 parent adc0743 commit 353616a
Show file tree
Hide file tree
Showing 680 changed files with 225,113 additions and 83 deletions.
30 changes: 30 additions & 0 deletions Libs/AudioFile-lib/.github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build and Test

on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Build
run: |
mkdir build
cd build
cmake ..
cmake --build .
- name: Unit Tests
run: |
cd build
ctest -C Debug -VV
29 changes: 29 additions & 0 deletions Libs/AudioFile-lib/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xccheckout
*.xcscmblueprint


*.pyc
.vscode/

audio-write-tests
Loading

0 comments on commit 353616a

Please sign in to comment.