This repository has been archived by the owner on Apr 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change
kbuild
to produce targets locally (#641)
Fixes #586 The tool now produces the distribution under a directory `kdist` in the project folder by default, or at a location specified by the user (using `--output`). Further changes: * Since there is no global repository, hashes have also been dropped from the distribution hierarchy * Command `kbuild clean` has been removed --------- Co-authored-by: devops <devops@runtimeverification.com>
- Loading branch information
1 parent
16b75f5
commit d19598b
Showing
6 changed files
with
44 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.1.438 | ||
0.1.439 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
import os | ||
from pathlib import Path | ||
from typing import Final | ||
|
||
PROJECT_FILE_NAME: Final = 'kbuild.toml' | ||
KBUILD_DIR_NAME: Final = '.kbuild' | ||
|
||
KBUILD_DIR_ENV: Final = os.getenv('KBUILD_DIR') | ||
KBUILD_DIR: Final = Path(KBUILD_DIR_ENV) if KBUILD_DIR_ENV else Path.home() / KBUILD_DIR_NAME | ||
DIST_DIR_NAME: Final = 'kdist' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters