mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
A couple of minor changes.
This commit is contained in:
@@ -3,7 +3,7 @@ name: Android
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
Android:
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -21,13 +21,12 @@ jobs:
|
||||
sdkmanager "platform-tools" \
|
||||
"platforms;android-34" \
|
||||
"build-tools;34.0.0" \
|
||||
"ndk;28.1.13356709"
|
||||
"ndk;29.0.14206865"
|
||||
- name: Configure local properties
|
||||
run: |
|
||||
cd projects/android-project
|
||||
{
|
||||
echo "sdk.dir=$ANDROID_SDK_ROOT"
|
||||
echo "ndk.dir=$ANDROID_SDK_ROOT/ndk/28.1.13356709"
|
||||
} > local.properties
|
||||
- name: Build
|
||||
run: |
|
||||
|
||||
4
.github/workflows/eepp-ios-build-check.yml
vendored
4
.github/workflows/eepp-ios-build-check.yml
vendored
@@ -3,7 +3,7 @@ name: iOS
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
MacOS:
|
||||
iOS:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
@@ -15,4 +15,4 @@ jobs:
|
||||
- name: Build
|
||||
run: |
|
||||
cd projects/ios
|
||||
sh ./compile-all.sh
|
||||
sh ./compile-all.sh config=release_arm64
|
||||
|
||||
@@ -7,6 +7,8 @@ framework heavily focused on the development of rich graphical user interfaces.
|
||||
[](https://github.com/SpartanJ/eepp/actions?query=workflow%3ALinux)
|
||||
[](https://github.com/SpartanJ/eepp/actions?query=workflow%3AWindows)
|
||||
[](https://github.com/SpartanJ/eepp/actions?query=workflow%3AmacOS)
|
||||
[](https://github.com/SpartanJ/eepp/actions?query=workflow%3AiOS)
|
||||
[](https://github.com/SpartanJ/eepp/actions?query=workflow%3AAndroid)
|
||||
|
||||
## Features
|
||||
|
||||
|
||||
@@ -104,7 +104,7 @@ android {
|
||||
sourceCompatibility JavaVersion.VERSION_11
|
||||
targetCompatibility JavaVersion.VERSION_11
|
||||
}
|
||||
ndkVersion "28.1.13356709"
|
||||
ndkVersion "29.0.14206865"
|
||||
lint {
|
||||
abortOnError false
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#!/bin/sh
|
||||
cd $(dirname "$0")
|
||||
cd $(dirname "$0") || exit
|
||||
|
||||
./build-sdl2.sh
|
||||
./compile-arm64.sh $@
|
||||
./build-sdl2.sh
|
||||
|
||||
Reference in New Issue
Block a user