From cafb18cf2e1a7b0c285222f2fa2240e1fc37190d Mon Sep 17 00:00:00 2001 From: Joe George Date: Wed, 18 Dec 2024 14:18:38 -0500 Subject: [PATCH] fixes --- .github/actions/build/action.yml | 6 +++--- .github/workflows/ci.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 058eb5236d5..26814422d3e 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -38,8 +38,9 @@ runs: # macOS and Linux - name: Build C++ and Python run: | - make -C cpp srcs - make -C python + make -C cpp slice2java + # make -C cpp srcs + # make -C python shell: bash if: (runner.os == 'macOS' || runner.os == 'Linux') && inputs.build_cpp_and_python == 'true' - name: Build @@ -52,7 +53,6 @@ runs: - name: Build Android working-directory: ${{ inputs.working_directory }} run: | - make -C ../cpp slice2java cd test/android/controller ./gradlew build shell: bash diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 82a1401fe27..57ed4e6c9f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -95,7 +95,7 @@ jobs: config: "android" working_directory: "java" test_flags: "--android --controller-app" - build_cpp_and_python: false + build_cpp_and_python: true build_android_controller: true runs-on: ${{ matrix.os }}