Skip to content

Commit

Permalink
Drop Determinate Nix support for containers for the moment.
Browse files Browse the repository at this point in the history
The daemon wasn't actually starting in the first place, and a recent change
brought the issue to light. Without the daemon, it isn't Determinate Nix.

We can bring this back if customers & users need it.
  • Loading branch information
grahamc committed Jan 14, 2025
1 parent 416a71a commit dc737d0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 41 deletions.
32 changes: 0 additions & 32 deletions nix/tests/container-test/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,38 +34,6 @@ let
tester = ./default/Dockerfile;
system = "x86_64-linux";
};

# Found via https://hub.docker.com/_/ubuntu/ under "How is the rootfs build?"
# Jammy (--determinate)
"ubuntu-v22_04-determinate" = {
tarball = builtins.fetchurl {
url = "http://cdimage.ubuntu.com/ubuntu-base/releases/22.04/release/ubuntu-base-22.04-base-amd64.tar.gz";
sha256 = "01sbpjb32x1z1yr9q78zrk0a6kfw5c4fxw1jqmm23g8ixryffvyz";
};
tester = ./default/Dockerfile.determinate;
system = "x86_64-linux";
};

# focal (--determinate)
"ubuntu-v20_04-determinate" = {
tarball = builtins.fetchurl {
url = "http://cdimage.ubuntu.com/ubuntu-base/releases/20.04/release/ubuntu-base-20.04.1-base-amd64.tar.gz";
sha256 = "0ryn38csmx41a415g9b3wk30csaxxlkgkdij9v4754pk877wpxlp";
};
tester = ./default/Dockerfile.determinate;
system = "x86_64-linux";
};

# bionic (--determinate)
"ubuntu-v18_04-determinate" = {
tarball = builtins.fetchurl {
url = "http://cdimage.ubuntu.com/ubuntu-base/releases/18.04/release/ubuntu-base-18.04.5-base-amd64.tar.gz";
sha256 = "1sh73pqwgyzkyssv3ngpxa2ynnkbdvjpxdw1v9ql4ghjpd3hpwlg";
};
tester = ./default/Dockerfile.determinate;
system = "x86_64-linux";
};

};

makeTest = containerTool: imageName:
Expand Down
9 changes: 0 additions & 9 deletions nix/tests/container-test/default/Dockerfile.determinate

This file was deleted.

0 comments on commit dc737d0

Please sign in to comment.