Skip to content
Snippets Groups Projects
Commit b2c61a33 authored by Jens Nolte's avatar Jens Nolte
Browse files

Remove unnecessary shell evocations and add debug output

Also magically fixes Gitlab CI issues
parent 116fbe1e
No related branches found
No related tags found
1 merge request!16Merge dev branch into master
Pipeline #2603 failed
......@@ -4,7 +4,7 @@ variables:
build_incremental:
stage: build
image: nixpkgs/nix-flakes
script: nix shell nixpkgs#zsh --command zsh -c './examples/build_incremental/execute_example.sh'
script: pwd; nix shell nixpkgs#zsh --command ./examples/build_incremental/execute_example.sh
tags:
- docker
- kubernetes
......@@ -12,7 +12,7 @@ build_incremental:
build_incremental_nix_legacy:
stage: build
image: nixpkgs/nix
script: NIX_PATH=nixpkgs=channel:nixos-unstable nix-shell -p zsh --run 'zsh -c ./examples/build_incremental_nix_legacy/execute_example.sh'
script: pwd; NIX_PATH=nixpkgs=channel:nixos-unstable nix-shell -p zsh --run ./examples/build_incremental_nix_legacy/execute_example.sh
tags:
- docker
- kubernetes
......
#!/bin/sh
set -x
# Set the current device and environments
./bin/set-device examples/build_incremental/device
......
#!/bin/sh
set -x
# Set the current device and environments
./bin/set-device examples/build_incremental/device
......
#!/bin/sh
set -x
cd examples/nix_builder
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment