2016-08-11 19:43:28 +00:00
|
|
|
- Run the full testsuite (``tests\testament\tester all``) and ensure it's green; actually ensure travis is green (Usually the case these days)
|
2015-10-30 13:52:26 +00:00
|
|
|
|
2016-08-11 19:43:28 +00:00
|
|
|
- Update news.txt
|
2015-10-30 13:52:26 +00:00
|
|
|
- write a news ticker entry
|
|
|
|
- Update the version
|
2015-10-30 14:08:47 +00:00
|
|
|
- In system.nim
|
2015-10-30 13:52:26 +00:00
|
|
|
|
|
|
|
- Recompile koch!
|
|
|
|
- Generate the full docs; koch web0
|
|
|
|
|
2016-08-11 19:43:28 +00:00
|
|
|
- Test the installers: koch testinstall
|
2016-10-23 12:19:22 +00:00
|
|
|
- Tag the release, e.g. ```git tag -am "Version 0.15.0" v0.15.0```
|
2016-10-23 12:21:01 +00:00
|
|
|
- Push the tag: ```git push origin [tagname]```
|
2016-10-20 20:33:54 +00:00
|
|
|
|
2017-05-17 20:21:11 +00:00
|
|
|
- Run ``koch winrelease``
|
|
|
|
- Upload the produced .zips.
|
2016-11-01 16:46:44 +00:00
|
|
|
|
2015-10-30 13:52:26 +00:00
|
|
|
- Merge devel into master
|
2016-11-01 16:46:44 +00:00
|
|
|
- Update csources via ``koch pushcsources``
|
2016-08-11 19:50:46 +00:00
|
|
|
|
2017-05-17 20:29:43 +00:00
|
|
|
**The following shell script shall be replaced by 'koch unixrelease'**
|
2016-09-27 13:43:29 +00:00
|
|
|
Shell script to build a source tarball:
|
2016-09-27 13:30:11 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
tmp_dir=$(mktemp -d)
|
|
|
|
cd $tmp_dir
|
|
|
|
git clone -q --depth 1 https://github.com/nim-lang/Nim.git
|
|
|
|
cd Nim
|
|
|
|
git clone -q --depth 1 https://github.com/nim-lang/csources
|
|
|
|
( cd csources && sh build.sh )
|
|
|
|
bin/nim c koch
|
|
|
|
./koch boot -d:release
|
|
|
|
./koch web0
|
|
|
|
PATH=$PATH:$(pwd)/bin
|
|
|
|
./koch csource -d:release
|
|
|
|
./koch xz -d:release
|
|
|
|
```
|