From 4a01297159b80c4aa2b9e6f7205ce0c6c415f8ac Mon Sep 17 00:00:00 2001 From: Jeongseok Lee Date: Sat, 2 Nov 2024 14:20:44 -0700 Subject: [PATCH] w --- .github/workflows/ci_macos.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_macos.yml b/.github/workflows/ci_macos.yml index cf57f865..cfff2bfe 100644 --- a/.github/workflows/ci_macos.yml +++ b/.github/workflows/ci_macos.yml @@ -25,6 +25,12 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install FBX SDK + run: | + curl -O https://damassets.autodesk.net/content/dam/autodesk/www/files/fbx202037_fbxsdk_clang_mac.pkg.tgz + tar -xvf fbx202037_fbxsdk_clang_mac.pkg.tgz + sudo installer -pkg fbx202037_fbxsdk_clang_macos.pkg -target / + - name: Set up pixi uses: prefix-dev/setup-pixi@v0.8.1 with: @@ -32,7 +38,8 @@ jobs: - name: Build and test Momentum run: | - pixi run test${{ matrix.mode }} + MOMENTUM_BUILD_IO_FBX=ON \ + pixi run test${{ matrix.mode }} - name: Install Momentum and Build hello_world run: |