Skip to content
This repository was archived by the owner on Oct 13, 2022. It is now read-only.

Commit 3e4cc07

Browse files
author
Bhal Agashe
committed
Prepare for release v0.6.0
1 parent ce485e7 commit 3e4cc07

File tree

4 files changed

+22
-23
lines changed

4 files changed

+22
-23
lines changed

.github/workflows/Build.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
lsb_release -a
1818
mkdir shasta-build
1919
cd shasta-build
20-
cmake .. -DBUILD_ID="Shasta unreleased test build newer than release 0.5.1 at commit "$GITHUB_SHA
21-
# cmake .. -DBUILD_ID="Shasta Release 0.5.1"
20+
# cmake .. -DBUILD_ID="Shasta unreleased test build newer than release 0.6.0 at commit "$GITHUB_SHA
21+
cmake .. -DBUILD_ID="Shasta Release 0.6.0"
2222
make -j 2 all
2323
make install/strip
2424
mv shasta-install shasta-Ubuntu-20.04
@@ -50,8 +50,8 @@ jobs:
5050
lsb_release -a
5151
mkdir shasta-build
5252
cd shasta-build
53-
cmake .. -DBUILD_ID="Shasta unreleased test build newer than release 0.5.1 at commit "$GITHUB_SHA
54-
# cmake .. -DBUILD_ID="Shasta Release 0.5.1"
53+
# cmake .. -DBUILD_ID="Shasta unreleased test build newer than release 0.6.0 at commit "$GITHUB_SHA
54+
cmake .. -DBUILD_ID="Shasta Release 0.6.0"
5555
make -j 2 all
5656
make install/strip
5757
mv shasta-install shasta-Ubuntu-18.04
@@ -79,8 +79,8 @@ jobs:
7979
lsb_release -a
8080
mkdir shasta-build
8181
cd shasta-build
82-
cmake .. -DBUILD_ID="Shasta unreleased test build newer than release 0.5.1 at commit "$GITHUB_SHA
83-
# cmake .. -DBUILD_ID="Shasta Release 0.5.1"
82+
# cmake .. -DBUILD_ID="Shasta unreleased test build newer than release 0.6.0 at commit "$GITHUB_SHA
83+
cmake .. -DBUILD_ID="Shasta Release 0.6.0"
8484
make -j 2 all
8585
make install/strip
8686
mv shasta-install shasta-Ubuntu-16.04
@@ -112,8 +112,8 @@ jobs:
112112
run: |
113113
mkdir shasta-build
114114
cd shasta-build
115-
cmake .. -DBUILD_ID="Shasta unreleased test build for MacOS-10.14 newer than release 0.5.1 at commit "$GITHUB_SHA
116-
# cmake .. -DBUILD_ID="Shasta Release 0.5.1 for MacOS-10.14"
115+
# cmake .. -DBUILD_ID="Shasta unreleased test build for MacOS-10.14 newer than release 0.6.0 at commit "$GITHUB_SHA
116+
cmake .. -DBUILD_ID="Shasta Release 0.6.0 for MacOS-10.14"
117117
make VERBOSE=1 -j 2 all
118118
make install/strip
119119
# See what libraries the executable depends on.
@@ -136,8 +136,8 @@ jobs:
136136
run: |
137137
mkdir shasta-build
138138
cd shasta-build
139-
cmake .. -DBUILD_ID="Shasta unreleased test build for MacOS-10.15 newer than release 0.5.1 at commit "$GITHUB_SHA
140-
# cmake .. -DBUILD_ID="Shasta Release 0.5.1 for MacOS-10.15"
139+
# cmake .. -DBUILD_ID="Shasta unreleased test build for MacOS-10.15 newer than release 0.6.0 at commit "$GITHUB_SHA
140+
cmake .. -DBUILD_ID="Shasta Release 0.6.0 for MacOS-10.15 & MacOS-10.14"
141141
make VERBOSE=1 -j 2 all
142142
make install/strip
143143
# See what libraries the executable depends on.

docs/MakeRelease.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ <h1>Creating a new release</h1>
4747
sudo ./shasta/scripts/InstallPrerequisites-Ubuntu.sh
4848
mkdir -p shasta-build
4949
cd shasta-build
50-
cmake ../shasta
50+
cmake ../shasta -DBUILD_ID="Shasta Release X.Y.Z for 64 bit ARM"
5151
make install -j
5252
</code></li>
53-
<li>Download the <code>aarch64</code> Shasta binary (using <code>scp</code>) and rename it to <code>shasta-Linux-aarch64-X.Y.Z</code>. This is the seventh artifact for the release.</li>
53+
<li>Download the <code>aarch64</code> Shasta binary (using <code>scp</code>) and rename it to <code>shasta-Linux-ARM-X.Y.Z</code>. This is the seventh artifact for the release.</li>
5454
</ul>
5555
</li>
5656

docs/QuickStart.html

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ <h2 id="QuickStartLinux">Linux</h2>
2121
You can use the following commands to download the executable from the latest release and run an assembly:
2222
<pre>
2323
# Download the executable for the latest release.
24-
curl -O -L https://github.com/chanzuckerberg/shasta/releases/download/0.5.1/shasta-Linux-0.5.1
24+
curl -O -L https://github.com/chanzuckerberg/shasta/releases/download/0.6.0/shasta-Linux-0.6.0
2525

2626
# Grant necessary permissions.
27-
chmod ugo+x shasta-Linux-0.5.1
27+
chmod ugo+x shasta-Linux-0.6.0
2828

2929
# Run an assembly.
30-
./shasta-Linux-0.5.1 --input input.fasta
30+
./shasta-Linux-0.6.0 --input input.fasta
3131
</pre>
3232

3333
<p>
@@ -67,17 +67,16 @@ <h2 id="QuickStartMacOS">macOS</h2>
6767

6868
<pre>
6969
# Download the executable for the latest release.
70-
curl -O -L https://github.com/chanzuckerberg/shasta/releases/download/0.5.1/shasta-macOS-10.15-0.5.1
70+
curl -O -L https://github.com/chanzuckerberg/shasta/releases/download/0.6.0/shasta-macOS-0.6.0
7171

7272
# Grant necessary permissions.
73-
chmod ugo+x shasta-macOS-10.15-0.5.1
73+
chmod ugo+x shasta-macOS-0.6.0
7474

7575
# Run an assembly.
76-
./shasta-macOS-10.15-0.5.1 --input input.fasta
76+
./shasta-macOS-0.6.0 --input input.fasta
7777
</pre>
78-
The above assumes that you are on macOS 10.15 (<i>Catalina</i>).
79-
If you are on macOS 10.14 (<i>Mojave</i>), change the name of the executable
80-
accordingly in the 3 above commands.
78+
The macOS executable has been tested on macOS 10.15 (<i>Catalina</i>) and
79+
macOS 10.14 (<i>Mojave</i>).
8180

8281
<h2 id="QuickStartWindows">Windows</h2>
8382
<ul>

docs/Running.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -656,10 +656,10 @@ <h2 id=Docker>Running an assembly using Docker</h2>
656656
<h2 id=Errors>Dealing with errors</h2>
657657
<ul>
658658
<li> <code>FATAL: kernel too old</code> : If you get this error when using
659-
<code>shasta-Linux-0.5.1</code>, then you should retry with <code>shasta-OldLinux-0.5.1</code>, which is a version of Shasta built for older kernels.
659+
<code>shasta-Linux-0.6.0</code>, then you should retry with <code>shasta-OldLinux-0.6.0</code>, which is a version of Shasta built for older kernels.
660660
You can find out the kernel version on your system by running <code>uname -a</code>.
661661
Compare it with the minimum required kernel version for the Shasta executable by running
662-
<code>file shasta-Linux-0.5.1</code> or <code>file shasta-OldLinux-0.5.1</code>.
662+
<code>file shasta-Linux-0.6.0</code> or <code>file shasta-OldLinux-0.6.0</code>.
663663

664664
<li> <code>sh: 1: cannot create /sys/kernel/mm/hugepages/hugepages-2048kB/nr_overcommit_hugepages: Read-only file system</code>: Shasta needs root privilege to use the `hugetlbfs` filesystem. If you're running this in a Docker container, you need to
665665
use the Docker option <code>--privileged</code>.

0 commit comments

Comments
 (0)