-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix #11457 lock down csources version
- Loading branch information
1 parent
7d17cd3
commit f10824f
Showing
6 changed files
with
80 additions
and
23 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
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
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,15 +1,11 @@ | ||
sh ci/deps.sh | ||
|
||
# Build from C sources. | ||
git clone --depth 1 https://github.com/nim-lang/csources.git | ||
cd csources | ||
sh build.sh | ||
cd .. | ||
NIMBUILD_ACTION=action_build_koch sh build_all.sh | ||
|
||
# Add Nim to the PATH | ||
export PATH=$(pwd)/bin${PATH:+:$PATH} | ||
# Bootstrap. | ||
nim -v | ||
nim c koch | ||
./koch boot | ||
cp bin/nim bin/nimd | ||
./koch boot -d:release |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
nim_comment="key-value pairs for windows/posix builds, locking down csources version (refs #11457)" | ||
nim_csources2url=https://github.com/timotheecour/csources | ||
nim_csources2_tag=v0.20.0 | ||
nim_csources2_clone_cmd="git clone -q --depth 1 --branch $nim_csources2_tag $nim_csources2url csources" |