-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(actions): add cachix/install-nix-action@v25
- Loading branch information
Showing
12 changed files
with
127 additions
and
16 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6004951b182f8860210c8d6f0d808ec5b1a33d28 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
...t/src/gen/kotlin/io/github/typesafegithub/workflows/actions/cachix/InstallNixActionV25.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
// This file was generated using action-binding-generator. Don't change it by hand, otherwise your | ||
// changes will be overwritten with the next binding code regeneration. | ||
// See https://github.com/typesafegithub/github-workflows-kt for more info. | ||
@file:Suppress( | ||
"DataClassPrivateConstructor", | ||
"UNUSED_PARAMETER", | ||
) | ||
|
||
package io.github.typesafegithub.workflows.actions.cachix | ||
|
||
import io.github.typesafegithub.workflows.domain.actions.Action | ||
import io.github.typesafegithub.workflows.domain.actions.RegularAction | ||
import java.util.LinkedHashMap | ||
import kotlin.Boolean | ||
import kotlin.String | ||
import kotlin.Suppress | ||
import kotlin.Unit | ||
import kotlin.collections.List | ||
import kotlin.collections.Map | ||
import kotlin.collections.toList | ||
import kotlin.collections.toTypedArray | ||
|
||
/** | ||
* Action: Install Nix | ||
* | ||
* Installs Nix on GitHub Actions for the supported platforms: Linux and macOS. | ||
* | ||
* [Action on GitHub](https://github.com/cachix/install-nix-action) | ||
* | ||
* @param extraNixConfig Gets appended to `/etc/nix/nix.conf` if passed. | ||
* @param githubAccessToken Configure nix to pull from github using the given github token. | ||
* @param installUrl Installation URL that will contain a script to install Nix. | ||
* @param installOptions Additional installer flags passed to the installer script. | ||
* @param nixPath Set NIX_PATH environment variable. | ||
* @param enableKvm Enable KVM for hardware-accelerated virtualization on Linux, if available. | ||
* @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by | ||
* the binding | ||
* @param _customVersion Allows overriding action's version, for example to use a specific minor | ||
* version, or a newer version that the binding doesn't yet know about | ||
*/ | ||
public data class InstallNixActionV25 private constructor( | ||
/** | ||
* Gets appended to `/etc/nix/nix.conf` if passed. | ||
*/ | ||
public val extraNixConfig: String? = null, | ||
/** | ||
* Configure nix to pull from github using the given github token. | ||
*/ | ||
public val githubAccessToken: String? = null, | ||
/** | ||
* Installation URL that will contain a script to install Nix. | ||
*/ | ||
public val installUrl: String? = null, | ||
/** | ||
* Additional installer flags passed to the installer script. | ||
*/ | ||
public val installOptions: List<String>? = null, | ||
/** | ||
* Set NIX_PATH environment variable. | ||
*/ | ||
public val nixPath: String? = null, | ||
/** | ||
* Enable KVM for hardware-accelerated virtualization on Linux, if available. | ||
*/ | ||
public val enableKvm: Boolean? = null, | ||
/** | ||
* Type-unsafe map where you can put any inputs that are not yet supported by the binding | ||
*/ | ||
public val _customInputs: Map<String, String> = mapOf(), | ||
/** | ||
* Allows overriding action's version, for example to use a specific minor version, or a newer | ||
* version that the binding doesn't yet know about | ||
*/ | ||
public val _customVersion: String? = null, | ||
) : RegularAction<Action.Outputs>("cachix", "install-nix-action", _customVersion ?: "v25") { | ||
public constructor( | ||
vararg pleaseUseNamedArguments: Unit, | ||
extraNixConfig: String? = null, | ||
githubAccessToken: String? = null, | ||
installUrl: String? = null, | ||
installOptions: List<String>? = null, | ||
nixPath: String? = null, | ||
enableKvm: Boolean? = null, | ||
_customInputs: Map<String, String> = mapOf(), | ||
_customVersion: String? = null, | ||
) : this(extraNixConfig=extraNixConfig, githubAccessToken=githubAccessToken, | ||
installUrl=installUrl, installOptions=installOptions, nixPath=nixPath, | ||
enableKvm=enableKvm, _customInputs=_customInputs, _customVersion=_customVersion) | ||
|
||
@Suppress("SpreadOperator") | ||
override fun toYamlArguments(): LinkedHashMap<String, String> = linkedMapOf( | ||
*listOfNotNull( | ||
extraNixConfig?.let { "extra_nix_config" to it }, | ||
githubAccessToken?.let { "github_access_token" to it }, | ||
installUrl?.let { "install_url" to it }, | ||
installOptions?.let { "install_options" to it.joinToString("\n") }, | ||
nixPath?.let { "nix_path" to it }, | ||
enableKvm?.let { "enable_kvm" to it.toString() }, | ||
*_customInputs.toList().toTypedArray(), | ||
).toTypedArray() | ||
) | ||
|
||
override fun buildOutputObject(stepId: String): Action.Outputs = Outputs(stepId) | ||
} |