Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kip93 committed May 16, 2022
1 parent be56fcc commit 48268fd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ jobs:
id: nix-logic
working-directory: ./repo
run: |
nix-build scripts/nix-logic.nix | TMPDIR=../tmp xargs sh -c
mkdir -p ../tmp
nix-build scripts/nix-logic.nix | TMPDIR="$(realpath ../tmp)" xargs sh -c
continue-on-error: true

- name: "QMK: format"
Expand Down Expand Up @@ -104,4 +105,4 @@ jobs:
- name: Push to cache
working-directory: ./repo
run: |
nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{}' kip93
nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{} kip93'
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ jobs:

- name: Push to cache
run: |
nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{}' kip93
nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{} kip93'
2 changes: 1 addition & 1 deletion .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ jobs:
- name: Push to cache
run: |
nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{}' kip93
nix-build scripts/nix-cache.nix | xargs -I{} sh -c '{} kip93'
2 changes: 1 addition & 1 deletion scripts/nix-logic.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ pkgs ? import <nixpkgs> { } }: # TODO Uncomment some stuff
{ pkgs ? import <nixpkgs> { } }: # TODO Uncomment some stuff
with pkgs; writeScript "nix-logic" ''
#!${bash}/bin/bash
set -eu
Expand Down

0 comments on commit 48268fd

Please sign in to comment.