mirror of
https://git.madhouse-project.org/actions/nix.git
synced 2024-11-23 12:09:16 +01:00
Add a nix/shell action
Since it's basically the same as `nix/develop`, with only the nix command changed, leverage the existing script. Signed-off-by: Gergely Nagy <me@gergo.csillger.hu>
This commit is contained in:
parent
63e7eb4047
commit
18b41c0333
6 changed files with 109 additions and 1 deletions
39
.forgejo/workflows/nix-shell.yaml
Normal file
39
.forgejo/workflows/nix-shell.yaml
Normal file
|
@ -0,0 +1,39 @@
|
|||
---
|
||||
name: test nix/shell
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
jobs:
|
||||
nix/shell:
|
||||
runs-on: nixos-flakes
|
||||
steps:
|
||||
- name: checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: run a command within a Nix shell
|
||||
uses: ./shell
|
||||
with:
|
||||
flake: ./shell/test
|
||||
package: "hello"
|
||||
run: |
|
||||
hello
|
||||
|
||||
- name: ensure we're not in a dev environment
|
||||
uses: ./shell
|
||||
with:
|
||||
flake: ./shell/test
|
||||
package: "hello"
|
||||
run: |
|
||||
set -x
|
||||
|
||||
# if we have gcc installed, we're in a dev environment.
|
||||
# we don't want to be in a dev environment
|
||||
type -p gcc >/dev/null && exit 1
|
||||
hello
|
||||
|
||||
- name: no commands should still work
|
||||
uses: ./shell
|
||||
with:
|
||||
flake: ./shell/test
|
||||
package: "hello"
|
|
@ -5,4 +5,9 @@ workdir="$(mktemp -d)"
|
|||
trap 'rm -rf "$workdir"' EXIT
|
||||
echo "${INPUT_RUN}" >"${workdir}/run.sh"
|
||||
|
||||
nix develop "${INPUT_FLAKE}#${INPUT_PACKAGE}" -c bash "${workdir}/run.sh"
|
||||
__cmd="develop"
|
||||
if [ "$(basename $0)" = "nix-shell" ]; then
|
||||
__cmd="shell"
|
||||
fi
|
||||
|
||||
nix "${__cmd}" "${INPUT_FLAKE}#${INPUT_PACKAGE}" -c bash "${workdir}/run.sh"
|
||||
|
|
25
shell/action.yml
Normal file
25
shell/action.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
name: nix-shell
|
||||
author: Gergely Nagy
|
||||
description: "Run commands within a Nix development environment"
|
||||
inputs:
|
||||
flake:
|
||||
description: "The flake to use for the development environment"
|
||||
default: "."
|
||||
required: true
|
||||
package:
|
||||
description: "The package to use for the development environment"
|
||||
required: false
|
||||
run:
|
||||
description: "Commands to run within the development environment"
|
||||
required: false
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- id: nix-shell
|
||||
shell: bash
|
||||
run: $GITHUB_ACTION_PATH/bin/nix-shell
|
||||
env:
|
||||
INPUT_FLAKE: ${{ inputs.flake }}
|
||||
INPUT_PACKAGE: ${{ inputs.package }}
|
||||
INPUT_RUN: ${{ inputs.run }}
|
1
shell/bin/nix-shell
Symbolic link
1
shell/bin/nix-shell
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../develop/bin/nix-develop
|
27
shell/test/flake.lock
Normal file
27
shell/test/flake.lock
Normal file
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"nodes": {
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1685566663,
|
||||
"narHash": "sha256-btHN1czJ6rzteeCuE/PNrdssqYD2nIA4w48miQAFloM=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "4ecab3273592f27479a583fb6d975d4aba3486fe",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"owner": "nixos",
|
||||
"ref": "23.05",
|
||||
"repo": "nixpkgs",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"nixpkgs": "nixpkgs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"root": "root",
|
||||
"version": 7
|
||||
}
|
11
shell/test/flake.nix
Normal file
11
shell/test/flake.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/23.05";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs }:
|
||||
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
in {
|
||||
packages.x86_64-linux.hello = pkgs.hello;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue