Skip to content

Commit

Permalink
Add linuxArm64 support (benasher44#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
antohaby committed Feb 21, 2023
1 parent e3d0ce1 commit 37f8193
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
project adheres to [Semantic Versioning](https://semver.org/).

## [0.6.1] - 2023-02-21
### Changed
- Add support for linuxArm64 (#133)

## [0.6.0] - 2022-11-08
### Changed
- Rework source sets to form a rich hierarchy (#130)
Expand Down
3 changes: 3 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ kotlin {
}
if (HostManager.hostIsLinux || HostManager.hostIsMac) {
linuxX64()
linuxArm64()
linuxArm32Hfp()
}
}
Expand Down Expand Up @@ -137,6 +138,8 @@ kotlin {
if (HostManager.hostIsLinux || HostManager.hostIsMac) {
val linuxX64Main by getting { dependsOn(nix64Main) }
val linuxX64Test by getting { dependsOn(nix64Test) }
val linuxArm64Main by getting { dependsOn(nix64Main) }
val linuxArm64Test by getting { dependsOn(nix64Test) }
val linuxArm32HfpMain by getting { dependsOn(nix32Main) }
val linuxArm32HfpTest by getting { dependsOn(nix32Test) }
}
Expand Down
1 change: 1 addition & 0 deletions publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -174,5 +174,6 @@ tasks.register('publishWindows') {

tasks.register('publishLinux') {
dependsOn 'publishLinuxX64PublicationToMavenRepository'
dependsOn 'publishLinuxArm64PublicationToMavenRepository'
dependsOn 'publishLinuxArm32HfpPublicationToMavenRepository'
}

0 comments on commit 37f8193

Please sign in to comment.