build.sh 304 B

123456789101112131415
  1. #!/bin/bash -ex
  2. # SPDX-FileCopyrightText: 2023 yuzu Emulator Project
  3. # SPDX-License-Identifier: GPL-3.0-or-later
  4. export NDK_CCACHE="$(which ccache)"
  5. ccache -s
  6. BUILD_FLAVOR=mainline
  7. cd src/android
  8. chmod +x ./gradlew
  9. ./gradlew "assemble${BUILD_FLAVOR}Release" "bundle${BUILD_FLAVOR}Release"
  10. ccache -s