it’s insecureAcceptAnything
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Charlotte 🦝 Delenk 2022-06-26 06:58:46 +01:00
parent 08c6649a69
commit 7726ff0df6
Signed by: darkkirb
GPG key ID: AB2BD8DAF2E37122
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ steps:
- echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf - echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
- mkdir /etc/containers - mkdir /etc/containers
- | - |
echo '{"default": [{"type":"insecureAcceptEverything"}]}' > /etc/containers/policy.json echo '{"default": [{"type":"insecureAcceptAnything"}]}' > /etc/containers/policy.json
- nix-env -iA nixpkgs.skopeo - nix-env -iA nixpkgs.skopeo
- $(nix build '.#buildImage') | gzip --fast | skopeo copy --dest-creds=gitea-bot:$GITEA_KEY docker-archive:/dev/stdin docker://git.chir.rs/darkkirb/nix-containers:buildImage --dest-compress-format zstd --dest-compress-level 12 - $(nix build '.#buildImage') | gzip --fast | skopeo copy --dest-creds=gitea-bot:$GITEA_KEY docker-archive:/dev/stdin docker://git.chir.rs/darkkirb/nix-containers:buildImage --dest-compress-format zstd --dest-compress-level 12
environment: environment:

View file

@ -30,7 +30,7 @@
echo "trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nixcache:8KKuGz95Pk4UJ5W/Ni+pN+v+LDTkMMFV4yrGmAYgkDg= hydra.nixos.org-1:CNHJZBh9K4tP3EKF6FkkgeVYsS3ohTl+oS0Qa8bezVs=" >> /etc/nix/nix.conf echo "trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nixcache:8KKuGz95Pk4UJ5W/Ni+pN+v+LDTkMMFV4yrGmAYgkDg= hydra.nixos.org-1:CNHJZBh9K4tP3EKF6FkkgeVYsS3ohTl+oS0Qa8bezVs=" >> /etc/nix/nix.conf
echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf echo "experimental-features = nix-command flakes" >> /etc/nix/nix.conf
mkdir /etc/containers mkdir /etc/containers
echo '{"default": [{"type":"insecureAcceptEverything"}]}' > /etc/containers/policy.json echo '{"default": [{"type":"insecureAcceptAnything"}]}' > /etc/containers/policy.json
''; '';
}; };
}; };