File tree 3 files changed +8
-0
lines changed
3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/ ) , and this
6
6
project adheres to [ Semantic Versioning] ( https://semver.org/ ) .
7
7
8
+ ## [ 0.6.1] - TBD
9
+ ### Changed
10
+ - Add support for linuxArm64 (#133 )
11
+
8
12
## [ 0.6.0] - 2022-11-08
9
13
### Changed
10
14
- Rework source sets to form a rich hierarchy (#130 )
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ kotlin {
55
55
}
56
56
if (HostManager .hostIsLinux || HostManager .hostIsMac) {
57
57
linuxX64()
58
+ linuxArm64()
58
59
linuxArm32Hfp()
59
60
}
60
61
}
@@ -137,6 +138,8 @@ kotlin {
137
138
if (HostManager .hostIsLinux || HostManager .hostIsMac) {
138
139
val linuxX64Main by getting { dependsOn(nix64Main) }
139
140
val linuxX64Test by getting { dependsOn(nix64Test) }
141
+ val linuxArm64Main by getting { dependsOn(nix64Main) }
142
+ val linuxArm64Test by getting { dependsOn(nix64Test) }
140
143
val linuxArm32HfpMain by getting { dependsOn(nix32Main) }
141
144
val linuxArm32HfpTest by getting { dependsOn(nix32Test) }
142
145
}
Original file line number Diff line number Diff line change @@ -174,5 +174,6 @@ tasks.register('publishWindows') {
174
174
175
175
tasks. register(' publishLinux' ) {
176
176
dependsOn ' publishLinuxX64PublicationToMavenRepository'
177
+ dependsOn ' publishLinuxArm64PublicationToMavenRepository'
177
178
dependsOn ' publishLinuxArm32HfpPublicationToMavenRepository'
178
179
}
You can’t perform that action at this time.
0 commit comments