Skip to content

Commit

Permalink
Temporary: remove CONF_FILE from build process
Browse files Browse the repository at this point in the history
This appears to break the build with zephyr 3.5
  • Loading branch information
chrisandreae committed Feb 1, 2024
1 parent 3dcd549 commit 5d90f43
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion release.nix
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,10 @@ let
if [ -n "$DEBUG" ]; then ccache -z; fi
cmake -G Ninja -S ${zmk'.src}/app ${lib.escapeShellArgs zmk'.cmakeFlags} "-DUSER_CACHE_DIR=/tmp/.cache" "-DKEYMAP_FILE=$keymap" "-DCONF_FILE=$kconfig" "-DBOARD=$board" "-DBUILD_VERSION=${revision}"
cmake -G Ninja -S ${zmk'.src}/app ${lib.escapeShellArgs zmk'.cmakeFlags} "-DUSER_CACHE_DIR=/tmp/.cache" "-DKEYMAP_FILE=$keymap" "-DBOARD=$board" "-DBUILD_VERSION=${revision}"
# FIXME: breaks zephyr 3.5
# "-DCONF_FILE=$kconfig"
ninja
Expand Down

0 comments on commit 5d90f43

Please sign in to comment.