Skip to content

Commit 9297433

Browse files
authored
Merge pull request #214 from OpenBrickProtocolFoundation/update_ndk_to_29_beta_1
build: update the ndk to v29 beta1
2 parents 824155c + 3f10955 commit 9297433

File tree

9 files changed

+15
-10
lines changed

9 files changed

+15
-10
lines changed

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
- name: Setup NDK
4848
run: |
49-
sdkmanager --install "ndk;28.0.13004108"
49+
sdkmanager --install "ndk;29.0.13113456"
5050
5151
- name: Build native libraries
5252
run: |

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
uses: TheMrMilchmann/setup-msvc-dev@v3
9090
with:
9191
arch: x64
92-
toolset: '14.42'
92+
toolset: '14.43'
9393

9494
- name: Setup MYSYS2 (Windows)
9595
if: matrix.config.os == 'windows' && ( matrix.config.environment == 'mingw' || matrix.config.environment == 'ucrt' )

.github/workflows/web_build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ jobs:
2929
3030
- name: Build
3131
run: |
32-
bash ./platforms/build-web.sh
33-
meson test -C build-web
32+
ENABLE_TESTING=1 bash ./platforms/build-web.sh
3433
3534
# TODO upload page to gh-pages!
3635
- name: Upload artifacts

.github/workflows/windows_installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: TheMrMilchmann/setup-msvc-dev@v3
2525
with:
2626
arch: x64
27-
toolset: '14.42'
27+
toolset: '14.43'
2828

2929
- name: Setup meson
3030
run: |

platforms/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ android {
248248
}
249249

250250
compileSdkVersion 35
251-
ndkVersion "28.0.13004108"
251+
ndkVersion "29.0.13113456"
252252
defaultConfig {
253253
if (buildAsApplication) {
254254
applicationId "com.github.oopetris"

platforms/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:8.8.0'
9+
classpath 'com.android.tools.build:gradle:8.9.0'
1010

1111
// NOTE: Do not place your application dependencies here; they belong
1212
// in the individual module build.gradle files
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Oct 02 13:43:32 CEST 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

platforms/build-android.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ if [ ! -d "toolchains" ]; then
66
mkdir -p toolchains
77
fi
88

9-
export NDK_VER_DOWNLOAD="r28"
10-
export NDK_VER_DESC="r28"
9+
export NDK_VER_DOWNLOAD="r29-beta1"
10+
export NDK_VER_DESC="r29-beta1"
1111

1212
export BASE_PATH="$PWD/toolchains/android-ndk-$NDK_VER_DESC"
1313
export ANDROID_NDK_HOME="$BASE_PATH"

platforms/build-web.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,9 @@ if [ "$COMPILE_TYPE" == "complete_rebuild" ] || [ ! -e "$BUILD_DIR" ]; then
159159
fi
160160

161161
meson compile -C "$BUILD_DIR"
162+
163+
if [ -n "$ENABLE_TESTING" ]; then
164+
165+
meson test -C "$BUILD_DIR"
166+
167+
fi

0 commit comments

Comments
 (0)