Skip to content

Commit 4e90932

Browse files
committed
0.4.20 Updating CI
1 parent 93b0b21 commit 4e90932

File tree

7 files changed

+187
-114
lines changed

7 files changed

+187
-114
lines changed

.github/workflows/build-deploy.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,7 @@ jobs:
8888
name: Deploy to Maven Central
8989
run: |
9090
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
91-
gpg --list-keys
9291
python3 script/release.py --only java --ref ${{ github.ref }}
9392
env:
9493
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
95-
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
96-
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}
94+
SONATYPE_BEARER_TOKEN: ${{ secrets.SONATYPE_BEARER_TOKEN }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.4.20 - Oct 28, 2025
2+
3+
- Update Skija compatibility to 0.123.0
4+
15
# 0.4.19 - Apr 11, 2025
26

37
- macOS: fix build #296 via @SergeevPavel, @Alex2772

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.9)
1+
cmake_minimum_required(VERSION 3.10)
22
project(jwm-project LANGUAGES CXX)
33

44
####################################################################

macos/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.9)
1+
cmake_minimum_required(VERSION 3.10)
22
project(jwm LANGUAGES CXX OBJC)
33
set(CMAKE_CXX_STANDARD 14)
44
set(CMAKE_CXX_STANDARD_REQUIRED ON)

script/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def build_native():
99
"-G", "Ninja",
1010
"-DJWM_ARCH=" + build_utils.arch,
1111
*(["-DCMAKE_OSX_ARCHITECTURES=" + {"x64": "x86_64", "arm64": "arm64"}[build_utils.arch]] if build_utils.system == "macos" else [])])
12-
subprocess.check_call(["ninja"], cwd = "build")
12+
build_utils.ninja("build")
1313

1414
if os.path.exists('build/libjwm_x64.dylib'):
1515
build_utils.copy_newer('build/libjwm_x64.dylib', '../target/classes/libjwm_x64.dylib')

0 commit comments

Comments
 (0)