diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-11-27 22:02:20 +0100 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-11-27 22:02:20 +0100 |
commit | 52d4fdac552158fff4204d1ac10d59737c9468b6 (patch) | |
tree | 2069de57508c05141b275e98c9c81eaeb9df2b03 /Makefile | |
parent | 175ddfdbe9d24510b66700deb1caf9d02416c3e1 (diff) |
Remove all 'old nix' stuff, plus configs and unused dev environment
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 552dd7b..0000000 --- a/Makefile +++ /dev/null @@ -1,22 +0,0 @@ - -CONFIG = ./config.nix -BASH = $$(nix-build --no-out-link -A pkgs.bash)/bin/bash - -entrypoint: - nix-build -A entrypoint --arg config '(import ${CONFIG})' - -install-systemd: - $$(nix-build -A install --arg config '(import ${CONFIG})') - -test: - ${BASH} tmp-dev-env.sh \ - --run "cd src; go test ./... -count=1 -tags integration" - -shell: - ${BASH} tmp-dev-env.sh \ - --command " \ - cd src; \ - echo 'Loading test data...'; \ - (cd cmd/load-test-data && go run main.go); \ - return; \ - " |