mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2025-12-12 02:00:13 +01:00
7 lines
121 B
Bash
7 lines
121 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
cd "$CI_PROJECT_DIR"
|
|
|
|
echo "Activating flake's CI shell..."
|
|
nix develop .#ci --impure --command "bash"
|