Use only Nix-installed tools

This commit is contained in:
Suzanne Soy 2021-02-21 21:06:56 +00:00
parent 7637d7e932
commit f7499c55e6
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ jobs:
- name: Run tests
run: PATH="$PWD/result/bin:$PATH" ./test.py
- name: Run tests
run: PATH="$PWD/result/bin:$PATH" ./test.py
run: PATH="$PWD/result/bin" ./test.py
- uses: actions/upload-artifact@v2
with:
name: debug.tar.gz

View File

@ -8,7 +8,7 @@
let system = "x86_64-linux"; in
let nixpkgs = import nixpkgs-git { config = { allowUnfree = true;}; system = system; }; in
let mypackages = with nixpkgs; [ coreutils python3 sqlite gawk ]; in
let mypackages = with nixpkgs; [ coreutils python3 sqlite gawk git ]; in
with import nixpkgs-git { system = "x86_64-linux"; };
symlinkJoin {