File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change 22
22
nix_path : nixpkgs=channel:nixpkgs-unstable
23
23
24
24
- name : Install Nix Packages
25
- run : nix-env -f shell.nix -i -A buildInputs
25
+ run : |
26
+ echo PATHs pre
27
+ tr ':' '\n' <<<$PATH | tee path-pre
28
+ tr ':' '\n' <<<$PYTHONPATH | tee pythonpath-pre
29
+ env -0 | while IFS='=' read -r -d '' n v; do
30
+ printf "%s\n" "$n"
31
+ done | sort | tee envs-pre
32
+ nix-env -f shell.nix -i -A buildInputs
33
+ echo PATHs post
34
+ tr ':' '\n' <<<$PATH | tee path-post
35
+ tr ':' '\n' <<<$PYTHONPATH | tee pythonpath-post
36
+ env -0 | while IFS='=' read -r -d '' n v; do
37
+ printf "%s\n" "$n"
38
+ done | sort | tee envs-post
39
+ diff -u envs-pre envs-post
40
+ diff -u path-pre path-post
41
+ diff -u pythonpath-pre pythonpath-post
42
+
43
+ - name : Check Nix Packages
44
+ run : |
45
+ echo PATHs
46
+ tr ':' '\n' <<<$PATH
47
+ tr ':' '\n' <<<$PYTHONPATH
26
48
27
49
- name : Install Go tools
28
50
run : make tools
31
53
run : make verify
32
54
33
55
- name : Non Go Formatters
34
- run : ./.github/workflows/formatters.sh
56
+ run : nix-shell --run ./.github/workflows/formatters.sh
35
57
36
58
- name : Install ZFS
37
59
run : sudo apt-get -y update && sudo apt-get -y install zfsutils-linux
You can’t perform that action at this time.
0 commit comments