Skip to content

Commit

Permalink
try testing again
Browse files Browse the repository at this point in the history
  • Loading branch information
abathur committed Mar 28, 2024
1 parent 1862ce4 commit 7ca493c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,4 @@ jobs:
nix_path: nixpkgs=channel:nixpkgs-unstable
# DOING: figure out how to run the equivalent of this with the development resholve we're using here
- uses: DeterminateSystems/magic-nix-cache-action@main
with:
source-revision: 1a898bd613535711756fc960e4dd1dfefd4e1636
- run: nix flake check --print-build-logs
6 changes: 4 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
inputs = {
# nixpkgs.url = "github:nixos/nixpkgs/staging";
nixpkgs.url = "github:abathur/nixpkgs/e7891ac2106700c183659882c3f5799bd1aa1c91";

flake-utils.url = "github:numtide/flake-utils";
flake-compat = {
url = "github:edolstra/flake-compat";
Expand Down Expand Up @@ -74,7 +73,10 @@
${pkgs.ansifilter}/bin/ansifilter -o $out/nix-demo.txt --text nix-demo.ansi
'';
};
checks = {} // {
checks = pkgs.callPackages nixpkgs/test.nix {
inherit (pkgs) resholve;
rSrc = pkgs.lib.cleanSource self;
} // {
aarch64-cross-test-lesspipe = pkgs.pkgsCross.aarch64-multiplatform.lesspipe.override (old: {
inherit (pkgs.pkgsCross.aarch64-multiplatform) resholve;
});
Expand Down
1 change: 1 addition & 0 deletions tests/parse_awk.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# 2 cases for issue 82
awk -F'\t' -vcategory="$1" '{ split($9, cs, "|");for (i in cs) if (cs[i] == category) { print; break; }; }'
awk -F'\t' -v category="$1" '{ split($9, cs, "|");for (i in cs) if (cs[i] == category) { print; break; }; }'
awk 'BEGIN { system("date"); close("date")}'

0 comments on commit 7ca493c

Please sign in to comment.