Skip to content

Commit

Permalink
fixup! ci(nix): update to latest nixpkgs-unstable, rustc
Browse files Browse the repository at this point in the history
  • Loading branch information
mmilata committed Nov 27, 2024
1 parent 87c0702 commit 5dcbf9c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ stdenvNoCC.mkDerivation ({
curl # for connect tests
editorconfig-checker
gcc-arm-embedded
gcc14
# GCC <14 seems to have broken varargs handling on arm64-darwin which makes micropython crash.
# GCC 14 causes crypto tests to fail in CI due to emitting non-constant-time instructions,
# and it's probably a good idea to keep it the same version as gcc-arm-embedded anyway
# TODO: link issue
(if stdenv.isDarwin then gcc14 else gcc12)
git
gitAndTools.git-subrepo
gnumake
Expand Down

0 comments on commit 5dcbf9c

Please sign in to comment.