Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mmlb committed Mar 21, 2022
1 parent be57c18 commit b0c40e2
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,29 @@ jobs:
nix_path: nixpkgs=channel:nixpkgs-unstable

- name: Install Nix Packages
run: nix-env -f shell.nix -i -A buildInputs
run: |
echo PATHs pre
tr ':' '\n' <<<$PATH | tee path-pre
tr ':' '\n' <<<$PYTHONPATH | tee pythonpath-pre
env -0 | while IFS='=' read -r -d '' n v; do
printf "%s\n" "$n"
done | sort | tee envs-pre
nix-env -f shell.nix -i -A buildInputs
echo PATHs post
tr ':' '\n' <<<$PATH | tee path-post
tr ':' '\n' <<<$PYTHONPATH | tee pythonpath-post
env -0 | while IFS='=' read -r -d '' n v; do
printf "%s\n" "$n"
done | sort | tee envs-post
diff -u envs-pre envs-post
diff -u path-pre path-post
diff -u pythonpath-pre pythonpath-post
- name: Check Nix Packages
run: |
echo PATHs
tr ':' '\n' <<<$PATH
tr ':' '\n' <<<$PYTHONPATH
- name: Install Go tools
run: make tools
Expand All @@ -31,7 +53,7 @@ jobs:
run: make verify

- name: Non Go Formatters
run: ./.github/workflows/formatters.sh
run: nix-shell --run ./.github/workflows/formatters.sh

- name: Install ZFS
run: sudo apt-get -y update && sudo apt-get -y install zfsutils-linux
Expand Down

0 comments on commit b0c40e2

Please sign in to comment.