Skip to content

Commit 1fa2b3a

Browse files
committed
ci: remove test tarball
1 parent 49cc3c5 commit 1fa2b3a

File tree

3 files changed

+3
-12
lines changed

3 files changed

+3
-12
lines changed

.github/workflows/run_build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
config:
1313
- modern
1414
- legacy
15-
- test
1615
steps:
1716
- name: Checkout
1817
uses: actions/checkout@v4

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Download Tarball 📥
4242
uses: actions/download-artifact@v4
4343
with:
44-
name: tarball-test
44+
name: tarball-modern
4545

4646
- name: Setup WSL 🐧
4747
run: |

flake.nix

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828

2929
nixosConfigurations =
3030
let
31-
config = { test ? false, legacy ? false }: { config, lib, pkgs, ... }: {
31+
config = { legacy ? false }: { config, lib, pkgs, ... }: {
3232
wsl.enable = true;
3333
wsl.nativeSystemd = lib.mkIf legacy false;
34-
programs.bash.loginShellInit = lib.mkIf (!test) "nixos-wsl-welcome";
34+
programs.bash.loginShellInit = "nixos-wsl-welcome";
3535
systemd.tmpfiles.rules =
3636
let
3737
channels = pkgs.runCommand "default-channels" { } ''
@@ -63,14 +63,6 @@
6363
(config { legacy = true; })
6464
];
6565
};
66-
67-
test = nixpkgs.lib.nixosSystem {
68-
system = "x86_64-linux";
69-
modules = [
70-
self.nixosModules.default
71-
(config { test = true; })
72-
];
73-
};
7466
};
7567

7668
} //

0 commit comments

Comments
 (0)