Skip to content

Commit caa9867

Browse files
authored
Add linuxArm64 support (#133) (#134)
1 parent e3d0ce1 commit caa9867

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
66
project adheres to [Semantic Versioning](https://semver.org/).
77

8+
## [0.6.1] - TBD
9+
### Changed
10+
- Add support for linuxArm64 (#133)
11+
812
## [0.6.0] - 2022-11-08
913
### Changed
1014
- Rework source sets to form a rich hierarchy (#130)

build.gradle.kts

+3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ kotlin {
5555
}
5656
if (HostManager.hostIsLinux || HostManager.hostIsMac) {
5757
linuxX64()
58+
linuxArm64()
5859
linuxArm32Hfp()
5960
}
6061
}
@@ -137,6 +138,8 @@ kotlin {
137138
if (HostManager.hostIsLinux || HostManager.hostIsMac) {
138139
val linuxX64Main by getting { dependsOn(nix64Main) }
139140
val linuxX64Test by getting { dependsOn(nix64Test) }
141+
val linuxArm64Main by getting { dependsOn(nix64Main) }
142+
val linuxArm64Test by getting { dependsOn(nix64Test) }
140143
val linuxArm32HfpMain by getting { dependsOn(nix32Main) }
141144
val linuxArm32HfpTest by getting { dependsOn(nix32Test) }
142145
}

publish.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -174,5 +174,6 @@ tasks.register('publishWindows') {
174174

175175
tasks.register('publishLinux') {
176176
dependsOn 'publishLinuxX64PublicationToMavenRepository'
177+
dependsOn 'publishLinuxArm64PublicationToMavenRepository'
177178
dependsOn 'publishLinuxArm32HfpPublicationToMavenRepository'
178179
}

0 commit comments

Comments
 (0)