Commit 18720e9 1 parent 7760985 commit 18720e9 Copy full SHA for 18720e9
File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -26,11 +26,11 @@ jobs:
26
26
- uses : actions/checkout@v4
27
27
28
28
- uses : nixbuild/nix-quick-install-action@v29
29
- if : ${{ matrix.os != 'ubuntu-24.04-arm ' }}
29
+ if : ${{ matrix.system != 'aarch64-linux ' }}
30
30
31
31
# https://github.com/nixbuild/nix-quick-install-action/issues/55
32
32
- uses : cachix/install-nix-action@v30
33
- if : ${{ matrix.os == 'ubuntu-24.04-arm ' }}
33
+ if : ${{ matrix.system == 'aarch64-linux ' }}
34
34
35
35
- name : Set up build environment
36
36
run : |
43
43
- name : Test draw recipe
44
44
run : |
45
45
nix develop --command just draw
46
+ if : ${{ matrix.system != 'aarch64-linux' }}
Original file line number Diff line number Diff line change 24
24
in {
25
25
default = pkgs . mkShellNoCC {
26
26
packages = [
27
- keymap_drawer
28
-
29
27
zephyr . pythonEnv
30
28
( zephyr . sdk-0_16 . override { targets = [ "arm-zephyr-eabi" ] ; } )
31
29
44
42
# pkgs.findutils # find, xargs
45
43
# pkgs.gnugrep # grep
46
44
# pkgs.gnused # sed
47
- ] ;
45
+
46
+ ]
47
+ # Temporary disable keymap_drawer on aarch64-linux due to:
48
+ # https://github.com/NixOS/nixpkgs/issues/372375
49
+ ++ pkgs . lib . optionals ( system != "aarch64-linux" ) [ keymap_drawer ] ;
48
50
49
51
shellHook = ''
50
52
export ZMK_BUILD_DIR=$(pwd)/.build;
You can’t perform that action at this time.
0 commit comments