Update CI to use the latest dependencies

This commit is contained in:
lynxnb 2024-01-05 01:12:50 +01:00 committed by Niccolò Betto
parent 557f8ae9c8
commit 29d1717ce9
2 changed files with 8 additions and 2 deletions

View file

@ -18,7 +18,7 @@ jobs:
IS_BUILD_SIGNED: ${{ secrets.KEYSTORE != '' }}
UPLOAD_ARTIFACTS: ${{ github.event_name != 'pull_request' || contains(github.event.pull_request.labels.*.name, 'ci') }}
CMAKE_VERSION: "3.22.1"
NDK_VERSION: "25.0.8775105"
NDK_VERSION: "26.1.10909125"
steps:
- name: Git Checkout
@ -41,6 +41,12 @@ jobs:
${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle') }}-
${{ runner.os }}-gradle-
- name: Install Java 17
uses: actions/setup-java@v4
with:
distribution: 'temurin' # Temurin should come pre-installed on GitHub-hosted runners
java-version: '17'
- name: Install Ninja Build
run: |
sudo apt-get install -y ninja-build

View file

@ -13,7 +13,7 @@ idea.module {
excludeDirs.add(file("libraries/llvm"))
}
project.ext.isBuildSigned = (System.getenv("CI") == "true") && (System.getenv("IS_STRATO_SIGNED") == "true")
project.ext.isBuildSigned = (System.getenv("CI") == "true") && (System.getenv("IS_BUILD_SIGNED") == "true")
android {
namespace 'org.stratoemu.strato'