Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reduce the size for CI image by getting rid of 2 GHCs #3712

Merged
merged 2 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.d/5-internal/reduce-ci-image-size
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Remove apply-refact from CI image

This gets rid of GHC in the image, making the image smaller.
4 changes: 2 additions & 2 deletions nix/wire-server.nix
Original file line number Diff line number Diff line change
Expand Up @@ -410,13 +410,12 @@ let
pkgs.kubernetes-helm
pkgs.helmfile
pkgs.hlint
(hlib.justStaticExecutables pkgs.haskellPackages.apply-refact)
pkgs.jq
pkgs.kubectl
pkgs.kubelogin-oidc
pkgs.nixpkgs-fmt
pkgs.openssl
ormolu
(hlib.justStaticExecutables ormolu)
pkgs.shellcheck
pkgs.treefmt
pkgs.gawk
Expand Down Expand Up @@ -495,6 +494,7 @@ in
pkgs.kind
pkgs.netcat
pkgs.niv
(hlib.justStaticExecutables pkgs.haskellPackages.apply-refact)
(pkgs.python3.withPackages
(ps: with ps; [
black
Expand Down