From e174d5b56b66c9dea2721238a431677fe9871a95 Mon Sep 17 00:00:00 2001 From: SpinnerX Date: Wed, 19 Nov 2025 00:49:23 -0800 Subject: [PATCH 1/2] Removed the commands for cloning the repo as that is automated to be expected to directly compile audio-cpp implicitly --- .github/workflows/linux.yml | 5 +---- .github/workflows/mac.yml | 5 +---- .github/workflows/windows.yml | 2 +- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 9a196aa..6e1c60a 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -27,8 +27,5 @@ jobs: - name: Installing project dependencies run: conan remote add engine3d-conan https://libhal.jfrog.io/artifactory/api/conan/engine3d-conan - - name: Cloning audio-cpp repository - run: git clone https://github.com/engine3d-dev/audio-cpp - - - name: Building audio-wrappers + - name: Building audio-cpp run: conan build . -b missing -c tools.system.package_manager:sudo=True -c tools.system.package_manager:mode=install diff --git a/.github/workflows/mac.yml b/.github/workflows/mac.yml index 746518b..82ef2b8 100644 --- a/.github/workflows/mac.yml +++ b/.github/workflows/mac.yml @@ -31,8 +31,5 @@ jobs: - name: Installing Atlas repositories run: conan remote add engine3d-conan https://libhal.jfrog.io/artifactory/api/conan/engine3d-conan - - name: Cloning audio-cpp repository - run: git clone https://github.com/engine3d-dev/audio-cpp - - - name: Building the project + - name: Building audio-cpp run: conan build . -b missing diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 2ec7ffd..6de26c7 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -34,6 +34,6 @@ jobs: shell: pwsh run: conan remote add engine3d-conan https://libhal.jfrog.io/artifactory/api/conan/engine3d-conan - - name: Running Test Cases + - name: Building audio-cpp shell: pwsh run: conan build . -b missing From 8a4b1eaf363a5d618f250ec36cf9de733cf92b0e Mon Sep 17 00:00:00 2001 From: SpinnerX Date: Wed, 19 Nov 2025 00:51:24 -0800 Subject: [PATCH 2/2] Adding the correct link to wget the .clang-format file --- .github/workflows/clang-format-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/clang-format-deploy.yml b/.github/workflows/clang-format-deploy.yml index 31867cb..8cb06f0 100644 --- a/.github/workflows/clang-format-deploy.yml +++ b/.github/workflows/clang-format-deploy.yml @@ -7,7 +7,7 @@ jobs: steps: - name: 🌐 Downloading .clang-format from audio-wrappers - run: wget https://raw.githubusercontent.com/engine3d-dev/audio-cpp/.clang-format -O .clang-format + run: wget https://github.com/engine3d-dev/audio-cpp/blob/main/.clang-format -O .clang-format - uses: actions/checkout@v4 - name: Run clang-format style check for C/C++/Protobuf programs.