Skip to content

Commit

Permalink
Actions: Temporarily disabled AAX build
Browse files Browse the repository at this point in the history
  • Loading branch information
Janos Buttgereit committed Nov 4, 2023
1 parent 2fcdc4d commit 7aca45d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/BuildAndSignMac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
with:
submodules: recursive

- name: Fetch AAX SDK from private repository
run: gh release download --repo JanosGit/AAX_SDK 2.4.0
env:
GITHUB_TOKEN: ${{ secrets.AAX_LIBRARY_REPOSITORY_TOKEN }}
#- name: Fetch AAX SDK from private repository
# run: gh release download --repo JanosGit/AAX_SDK 2.4.0
# env:
# GITHUB_TOKEN: ${{ secrets.AAX_LIBRARY_REPOSITORY_TOKEN }}

- name: Unzip AAX SDK
run: tar -xf AAX-SDK-mac.zip
#- name: Unzip AAX SDK
# run: tar -xf AAX-SDK-mac.zip

- name: Install rust target aarch64-apple-darwin
run: rustup target add aarch64-apple-darwin
Expand All @@ -28,7 +28,7 @@ jobs:
# CMake configuration ================================================================================
- name: Configure CMake
working-directory: ${{ runner.workspace }}
run: cmake -S Schrammel_OJD -B ${{ runner.workspace }}/build -DCOPY_PLUGIN_AFTER_BUILD=FALSE -DAAX_SDK_PATH=AAX-SDK-mac
run: cmake -S Schrammel_OJD -B ${{ runner.workspace }}/build -DCOPY_PLUGIN_AFTER_BUILD=FALSE #-DAAX_SDK_PATH=AAX-SDK-mac


# Build ==============================================================================================
Expand All @@ -47,8 +47,8 @@ jobs:
- name: Move VST3 to output folder
run: mv ${{ runner.workspace }}/build/OJD-VST3_artefacts/VST3 ${{ runner.workspace }}/OJD-build-output

- name: Move AAX to output folder
run: mv ${{ runner.workspace }}/build/OJD-AAX_artefacts/AAX ${{ runner.workspace }}/OJD-build-output
#- name: Move AAX to output folder
# run: mv ${{ runner.workspace }}/build/OJD-AAX_artefacts/AAX ${{ runner.workspace }}/OJD-build-output


# Codesigning ========================================================================================
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/BuildWindows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ jobs:
with:
submodules: recursive

- name: Fetch AAX SDK from private repository
run: gh release download --repo JanosGit/AAX_SDK 2.4.0
env:
GITHUB_TOKEN: ${{ secrets.AAX_LIBRARY_REPOSITORY_TOKEN }}
#- name: Fetch AAX SDK from private repository
# run: gh release download --repo JanosGit/AAX_SDK 2.4.0
# env:
# GITHUB_TOKEN: ${{ secrets.AAX_LIBRARY_REPOSITORY_TOKEN }}

- name: Unzip AAX SDK
run: tar -xf AAX-SDK-windows.zip
#- name: Unzip AAX SDK
# run: tar -xf AAX-SDK-windows.zip


# CMake configuration ================================================================================
- name: Configure CMake
working-directory: ${{ runner.workspace }}
run: cmake -S Schrammel_OJD -B ${{ runner.workspace }}/build -DCOPY_PLUGIN_AFTER_BUILD=FALSE -DAAX_SDK_PATH=AAX-SDK-windows
run: cmake -S Schrammel_OJD -B ${{ runner.workspace }}/build -DCOPY_PLUGIN_AFTER_BUILD=FALSE #-DAAX_SDK_PATH=AAX-SDK-windows


# Build ==============================================================================================
Expand All @@ -43,9 +43,9 @@ jobs:
run: Copy-Item -Path '${{ runner.workspace }}\build\OJD-VST3_artefacts\Release\VST3' -Destination '${{ runner.workspace }}\OJD-build-output' -Recurse
if: runner.os == 'Windows'

- name: Copy AAX to output folder
run: Copy-Item -Path '${{ runner.workspace }}\build\OJD-AAX_artefacts\Release\AAX' -Destination '${{ runner.workspace }}\OJD-build-output' -Recurse
if: runner.os == 'Windows'
#- name: Copy AAX to output folder
# run: Copy-Item -Path '${{ runner.workspace }}\build\OJD-AAX_artefacts\Release\AAX' -Destination '${{ runner.workspace }}\OJD-build-output' -Recurse
# if: runner.os == 'Windows'


# Upload build artifacts ============================================================================
Expand Down

0 comments on commit 7aca45d

Please sign in to comment.